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
+1 -1
2016/starter.py
··· 4 4 import math # NOQA 5 5 import fileinput 6 6 from collections import Counter # NOQA 7 - from itertools import product, permutations, combinations, combinations_with_replacement # NOQA 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 10 10