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 starter.py

+1
+1
2016/starter.py
··· 23 23 # data = [x for x in line.split(', ')] 24 24 # data = [x for x in line] 25 25 # data = [int(x) for x in line.split()] 26 + # data = re.findall(r'(\w+)', line) 26 27 data = parse_line(r'', line) 27 28 28 29 if i == 0: