Update snippet descriptions

This commit is contained in:
Isabelle Viktoria Maciohsek
2020-11-02 19:27:07 +02:00
parent c469b67f0b
commit a2cd6db3b0
22 changed files with 67 additions and 64 deletions

View File

@ -19,5 +19,5 @@ def chunk(lst, size):
```
```py
chunk([1, 2, 3, 4, 5], 2) # [[1,2],[3,4],[5]]
chunk([1, 2, 3, 4, 5], 2) # [[1, 2], [3, 4], [5]]
```