mirror of
https://github.com/bertptrs/adventofcode.git
synced 2025-12-25 21:00:31 +01:00
17 lines
291 B
Python
17 lines
291 B
Python
import itertools
|
|
|
|
def lookandsay(line):
|
|
return ''.join([str(len(list(it))) + c for c, it in itertools.groupby(line)])
|
|
|
|
|
|
line = "1321131112"
|
|
for x in range(40):
|
|
line = lookandsay(line)
|
|
|
|
print("40:", len(line))
|
|
|
|
for x in range(10):
|
|
line = lookandsay(line)
|
|
|
|
print("50:", len(line))
|