Update snippet descriptions

This commit is contained in:
Isabelle Viktoria Maciohsek
2020-11-02 19:28:27 +02:00
parent 0a2f7993f7
commit 98b5f67412
23 changed files with 68 additions and 59 deletions

View File

@ -5,7 +5,7 @@ tags: list,beginner
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 slice notation to get the two slices of the list and combine them before returning.
```py
def offset(lst, offset):