mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-09 19:19:07 +01:00
6 lines
145 B
Python
6 lines
145 B
Python
|
def counter_effect(hit_count):
|
||
|
result = []
|
||
|
for num in map(int, hit_count):
|
||
|
result.append(list(range(num + 1)))
|
||
|
return result
|