diff --git a/snippets/offset.md b/snippets/offset.md index d0b2d51ef..783b1cb9c 100644 --- a/snippets/offset.md +++ b/snippets/offset.md @@ -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]