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

+1 -5
+1 -5
advent.py
··· 49 49 return True, stdout, cpu_usr 50 50 51 51 52 - def main(): 52 + if __name__ == '__main__': 53 53 exit_code = 0 54 54 55 55 if len(sys.argv) == 1: ··· 84 84 exit_code = 1 85 85 86 86 sys.exit(exit_code) 87 - 88 - 89 - if __name__ == '__main__': 90 - main()