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.

Fix 2017/starter.py

+1 -1
+1 -1
2017/starter.py
··· 6 6 from collections import Counter, deque, namedtuple # NOQA 7 7 from itertools import count, product, permutations, combinations, combinations_with_replacement # NOQA 8 8 9 - from utils import (parse_line, mul, factors, memoize, primes, new_table, md5, sha256 # NOQA 9 + from utils import (parse_line, mul, factors, memoize, primes, new_table, md5, sha256, # NOQA 10 10 Point, DIRS, DIRS_4, DIRS_8) # NOQA 11 11 12 12 # Itertools Functions: