Skip to content

floppyzedolfin/adventofcode

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Advent of Code

This is my take on the 2020 Advent of Code using the GO language.

Quickstart

  1. Checkout the project, then download dependencies:

    make init
    
  2. Create the basic sources files for a new day with:

    make day 12
    
  3. Run, giving the door to open and the parts to run as parameters:

    make run -- -door 1 -parts 1,2
    

    or

    make build
    ./adventofcode.out -door 1 -parts 1,2
    

    door must be an integer between 1 and 24 (obviously), parts is a list of integers separated by commas.

You can also run unit tests:

make test

Releases

No releases published

Packages

No packages published

Languages