From 31762df4d8a48723c1bee2a70eadb4b421283e89 Mon Sep 17 00:00:00 2001 From: defterade <11379144+defterade@users.noreply.github.com> Date: Sun, 22 Sep 2019 13:24:33 +0200 Subject: [PATCH 1/2] Remove placeholder text --- snippets/offset.md | 2 -- 1 file changed, 2 deletions(-) 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] From c8cb89fd9db635881645eeb461f24a259171e581 Mon Sep 17 00:00:00 2001 From: defterade <11379144+defterade@users.noreply.github.com> Date: Sun, 22 Sep 2019 13:25:23 +0200 Subject: [PATCH 2/2] Update initialiaze_2d_list.md --- snippets/initialiaze_2d_list.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/snippets/initialiaze_2d_list.md b/snippets/initialiaze_2d_list.md index 7cd5c79d2..08cb119ca 100644 --- a/snippets/initialiaze_2d_list.md +++ b/snippets/initialiaze_2d_list.md @@ -8,8 +8,6 @@ Initializes a 2D list of given width and height and value. Use list comprehension and `range()` to generate `h` rows where each is a list with length `h`, initialized with `val`. If `val` is not provided, default to `None`. -Explain briefly how the snippet works. - ```py def initialize_2d_list(w,h, val = None): return [[val for x in range(w)] for y in range(h)]