laurelton / adventOfCode

Solutions to problems from Advent of Code

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Advent of Code

Solutions to Advent of Code

The utils folder contains functions that automatically downloads input files, and submits answers. These functions expect that a directory exists for each year, containing a subdirectory input where the input for each day will be stored. Additionally, solution files are expected to be named dayXX.js, where XX is the zero padded day of the puzzle.

Example directory structure:

2022
├── day01.js
├── day02.js
├── day03.js
├── day04.js
├── day05.js
└── input
    ├── day01.txt
    ├── day02.txt
    ├── day03.txt
    ├── day04.txt
    └── day05.txt

About

Solutions to problems from Advent of Code


Languages

Language:JavaScript 94.5%Language:Python 5.5%