Remove placeholder text
This commit is contained in:
@@ -7,8 +7,6 @@ Moves the specified amount of elements to the end of the list.
|
|||||||
|
|
||||||
Use `lst[offset:]` and `lst[:offset]` to get the two slices of the list and combine them before returning.
|
Use `lst[offset:]` and `lst[:offset]` to get the two slices of the list and combine them before returning.
|
||||||
|
|
||||||
Explain briefly how the snippet works.
|
|
||||||
|
|
||||||
```py
|
```py
|
||||||
def offset(lst, offset):
|
def offset(lst, offset):
|
||||||
return lst[offset:] + lst[:offset]
|
return lst[offset:] + lst[:offset]
|
||||||
|
|||||||
Reference in New Issue
Block a user