Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Speedy category for Chunk by Steapn0806
from typing import Iterable
def chunking_by(items: list, size: int) -> Iterable:
result = []
for x in range(0, len(items), size):
result.append(items[x:x + size])
return result
if __name__ == '__main__':
print("Example:")
print(list(chunking_by([5, 4, 7, 3, 4, 5, 4], 3)))
# These "asserts" are used for self-checking and not for an auto-testing
assert list(chunking_by([5, 4, 7, 3, 4, 5, 4], 3)) == [[5, 4, 7], [3, 4, 5], [4]]
assert list(chunking_by([3, 4, 5], 1)) == [[3], [4], [5]]
assert list(chunking_by([5, 4], 7)) == [[5, 4]]
assert list(chunking_by([], 3)) == []
assert list(chunking_by([4, 4, 4, 4], 4)) == [[4, 4, 4, 4]]
print("Coding complete? Click 'Check' to earn cool rewards!")
April 13, 2020
Comments: