Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/jfacorro/advent-of-code-2019
- Owner: jfacorro
- License: apache-2.0
- Created: 2019-12-01T13:34:30.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2019-12-17T23:15:22.000Z (about 5 years ago)
- Last Synced: 2024-11-18T09:42:52.488Z (3 months ago)
- Language: Clojure
- Size: 82 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.