https://github.com/serginator/adventofcode2021
The exercises of https://adventofcode.com/2021
https://github.com/serginator/adventofcode2021
Last synced: 8 months ago
JSON representation
The exercises of https://adventofcode.com/2021
- Host: GitHub
- URL: https://github.com/serginator/adventofcode2021
- Owner: serginator
- Created: 2021-12-02T11:21:48.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T15:17:41.000Z (over 3 years ago)
- Last Synced: 2024-04-14T06:17:23.818Z (about 2 years ago)
- Language: JavaScript
- Size: 129 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Advent of Code 2021
Exercises from [Advent of Code 2021](https://adventofcode.com/2021)
To execute them, just run:
```sh
npm install
npm test
```
It will test the methods. To see the results just uncomment the console.logs in the files.
To watch coverage, after `npm test` run `npm serve`and go to http://localhost:8000
### Exercises
* [Day 01 - Sonar Sweep](https://adventofcode.com/2021/day/1) - [Result](exercises/day01.js)
* [Day 02 - Dive!](https://adventofcode.com/2021/day/2) - [Result](exercises/day02.js)
* [Day 03 - Binary Diagnostic](https://adventofcode.com/2021/day/3) - [Result](exercises/day03.js)
* [Day 04 - Giant Squid](https://adventofcode.com/2021/day/4) - [Result](exercises/day04.js)