https://github.com/average-user/adventofcode-clj-2018
Solutions of advent of code 2018-edition problems in Clojure
https://github.com/average-user/adventofcode-clj-2018
advent-of-code advent-of-code-2018 aoc aoc2018
Last synced: 12 months ago
JSON representation
Solutions of advent of code 2018-edition problems in Clojure
- Host: GitHub
- URL: https://github.com/average-user/adventofcode-clj-2018
- Owner: Average-user
- License: mit
- Created: 2018-12-03T18:14:08.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-12-20T20:45:48.000Z (over 7 years ago)
- Last Synced: 2025-07-06T08:43:59.811Z (12 months ago)
- Topics: advent-of-code, advent-of-code-2018, aoc, aoc2018
- Language: Clojure
- Size: 120 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Advent of Code 2018. Solutions in Clojure
Solutions to the problems in [here](https://adventofcode.com/2018). My timezone
sucks, so I'll be doing the solutions much later than when the problems are
released, but whatever.
The command:
``` text
lein run a b c
```
Will show solutions for the specified days (a b c ...). If no arguments are
given will show the solutions of every day so far implemented. Example:
``` text
$ lein run 1 5 3
========================================
| Day | Star | Solution |
|========================================|
| 1 | * | 484 |
| | ** | 367 |
| 5 | * | 9288 |
| | ** | 5844 |
| 3 | * | 109716 |
| | ** | 124 |
========================================
"Elapsed time: 2160.360176 msecs"
```
If you want to try your inputs, input files are stored at `resources/dayXX.txt`