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

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

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)