Retrieve and build directories to achieve the problems from Advent of Code.
Schema is :
AdventOfCode{year}
|
+ README.md - Contains the introduction text from the day01 problem.
+ day01
|
+ input - Contains your input for this day
+ README.md - The problem wording
+ day{n}
+ day{n + 2}
+ day25
from aocbuilder import AoCBuilder
# Retrieve from 2015 to now
builder = AoCBuilder("<your authentication token>")
builder.build()
# You already have folders from 2017 ? Easy
builder = AoCBuilder("<your authentication token>", 2018)
builder.build()
Use https://github.com/gaojiuli/tomd to convert HTML to Markdown