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.

Add namedtuple to starter.py

+1 -1
+1 -1
2016/starter.py
··· 3 3 import re # NOQA 4 4 import math # NOQA 5 5 import fileinput 6 - from collections import Counter, deque # NOQA 6 + from collections import Counter, deque, namedtuple # NOQA 7 7 from itertools import count, product, permutations, combinations, combinations_with_replacement # NOQA 8 8 9 9 from utils import parse_line, mul, factors, memoize, primes, new_table, Point # NOQA