Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jfacorro/advent-of-code-2019

Advent of code 2019
https://github.com/jfacorro/advent-of-code-2019

Last synced: 20 days ago
JSON representation

Advent of code 2019

Awesome Lists containing this project

README

        

advent
=====

Starting a REPL and running the solution for day 1, part one:

$ rebar3 clojerl repl
===> Verifying dependencies...
===> Compiling advent
===> Clojerl Compiling clojerl
===> Clojerl Compiling advent
%%% Compiling advent/day_1.clje...
Clojure 0.5.1
clje.user=> (advent.day-1/part-one)
3389778
clje.user=>

For any other day replace 1 with `n` and for running part two
just call `(advent.day-n/part-two)`.

Input files are stored under the `priv` folder.