Files
adventofcode/day-10/solution.py
2015-12-14 00:29:02 +01:00

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))