Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 807 Bytes

README.md

File metadata and controls

34 lines (23 loc) · 807 Bytes

AdventOfCodeTemplatePython

A template and solutions for completing Advent Of Code in a quick and neatly fashion.

Setup

To start, please run setup.py which will go through the installation process.

Usage

For current day problem

$ python aoc.py

For day in current yeer

$ python aoc.py {day}

Example $ python aoc.py 5

For any advent of code problem

$ python aoc.py {day} {year}

Example $ python aoc.py 5 2015

Load Input

If you already have the code, but want to reload your input, you can just remake the input.

For current day problem

$ python loadInput.py

For day in current yeer

$ python loadInput.py {day}

Example $ python loadInput.py 5

For any advent of code problem

$ python loadInput.py {day} {year}

Example $ python loadInput.py 5 2015