https://github.com/jbuget/aoc-2021
https://adventofcode.com/2021
https://github.com/jbuget/aoc-2021
advent-of-code advent-of-code-2021 advent-of-code-2021-javascript aoc aoc2021
Last synced: 3 months ago
JSON representation
https://adventofcode.com/2021
- Host: GitHub
- URL: https://github.com/jbuget/aoc-2021
- Owner: jbuget
- License: mit
- Created: 2021-12-01T18:34:06.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-12-27T11:49:36.000Z (over 3 years ago)
- Last Synced: 2025-01-29T05:28:21.756Z (5 months ago)
- Topics: advent-of-code, advent-of-code-2021, advent-of-code-2021-javascript, aoc, aoc2021
- Language: JavaScript
- Homepage:
- Size: 225 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# aoc-2021
https://adventofcode.com/2021## Installation
```bash
$ git clone [email protected]:jbuget/aoc-2021.git
$ cd aoc-2021
$ npm install
```## Usage
```bash
# Initialize a day
$ plop day# Run tests
$ npm start# Get a day part result
$ npm start --
```Examples:
```bash
# ex: for part "one"
$ npm start -- 2 one# ex: for part "two"
$ npm start -- 10 two
```