Merge pull request #215 from zhangfelix/modify-chunk

Fixes #214
This commit is contained in:
Angelos Chalaris
2020-08-31 10:20:35 +03:00
committed by GitHub

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]]
```