mirror of
https://github.com/bertptrs/adventofcode.git
synced 2025-12-25 21:00:31 +01:00
Move 2015 out of the way.
This commit is contained in:
17
2015/day-10/solution.py
Normal file
17
2015/day-10/solution.py
Normal file
@@ -0,0 +1,17 @@
|
||||
from __future__ import print_function
|
||||
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))
|
||||
Reference in New Issue
Block a user