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
··· 3 3 import re # NOQA 4 4 import math # NOQA 5 5 import fileinput 6 + from collections import Counter # NOQA 6 7 from itertools import product, permutations, combinations, combinations_with_replacement # NOQA 7 8 8 9 from utils import mul, factors, memoize, primes, Point # NOQA