GitXplorerGitXplorer
h

aoc2020

public
3 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
b55bdc5fd51585385955a0fb1a8e8093e68f4cb2

Solution to day 25

hhoxell committed 4 years ago
Unverified
070b1e0e3140b68b8c7e4b1bf136a3e8e9552699

Solution to day 23

hhoxell committed 4 years ago
Unverified
52376f83775a76a313c531cf0972950f0556c43e

Solution to day 19

hhoxell committed 4 years ago
Unverified
37a10d6f1a61a328b086a373f8a3304079f6a7c1

Solution to day 18

hhoxell committed 4 years ago
Unverified
3949aff17cf3e8b6440b8a25ca510a997e133675

Cpp for day 17

hhoxell committed 4 years ago
Unverified
ef4a1f05e04cf483fe1048de7dab9a2c37d2af54

Only copy input file if exists

hhoxell committed 4 years ago

README

The README file for this repository.

C++ Python Code style: black

My solutions to Advent of Code

Scaffolding

This repo also contains some functionality to scaffold the files needed to solve the problems. Use like so,

$ ./scaffold.py <DayOfMonth>

# As per the documentation
$ ./scaffold.py -h
usage: scaffold.py [-h] DayOfMonth

Scaffold a new day from template

positional arguments:
  DayOfMonth

optional arguments:
  -h, --help  show this help message and exit

# For instance, for Dec. 10th
# $ ./scaffold.py 10 

This will create a new directory in the git root directory, name it day<DayOfMonth>, copy the contents of the template directory and rename the .py file accordingly. If it already exists, an exception will be raised and nothing will be done.