/aoc-2022

Primary LanguageTypeScriptMIT LicenseMIT

Advent of Code 2022

GitHub license GitHub actions CodeFactor codecov

This repository contains a small nodejs project tackling advent of code 2022 coding challanges.

Challenge

For information about Advent of Code check here: https://adventofcode.com/2022/

Progress

12 out of 50 stars.

progress bar 24 percent

Running locally

Ran and tested with node v16, start by installing packages with

# install packages
npm install
# install ts-node globally
npm i ts-node -g

You can run solutions with

ts-node ./src/day1.solve.ts

You can start tests with

npm test