Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 1.44 KB

README_template.md

File metadata and controls

34 lines (23 loc) · 1.44 KB

AoC-Template

Advent of Code Solutions for (YEAR) in (LANGUAGE).

Highlights:

Favorite problems:

Interesting approaches:

Leaderboard appearances:

Stats

STATS_TABLE

Part 1 Rank Part 2 Rank Part 1 Time Stats Part 2 Time Stats

Note: Times are from time of challenge release, not start time to completion time

Scripting initially based on a script from Ullaakut. Expanded upon and fixed by HBiede

Makefile Automation

  • Automatically downloads the challenge and input for the day (e.g.: make download DAY=03)
    • In order to use this target, you need to specify your session cookie from adventofcode.com in cookies.txt through the usage of make cookie SESSION={Insert your session cookie here}.
    • Parses the challenge into a markdown file (adds Markdown style headers and code blocks).
  • Setup the new day's source file from a template file while downloading the input and challenge per above (e.g.: make DAY=03)
  • Create the stats table above by calling make stats
    • May require calling pip3 install -r requirements.txt to ensure you have all the necessary python dependencies