Remove placeholder text

This commit is contained in:
defterade
2019-09-22 13:24:33 +02:00
committed by GitHub
parent a790c30ad8
commit 31762df4d8

View File

@ -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.
Explain briefly how the snippet works.
```py
def offset(lst, offset):
return lst[offset:] + lst[:offset]