My Advent of Code solutions in Python. kevinyap.ca/2019/12/going-fast-in-advent-of-code/
advent-of-code python
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update 2017/starter.py

-4
-4
2017/starter.py
··· 22 22 for i, line in enumerate(fileinput.input()): 23 23 line = line.strip() 24 24 25 - # data = [x for x in line.split(', ')] 26 - # data = [x for x in line] 27 - # data = [int(x) for x in line.split()] 28 - # data = re.findall(r'(\w+)', line) 29 25 data = parse_line(r'', line) 30 26 31 27 if i == 0: