Skip to content

Latest commit

 

History

History
41 lines (27 loc) · 1.15 KB

README.md

File metadata and controls

41 lines (27 loc) · 1.15 KB

Advent of Code 2023

GitHub license GitHub actions CodeFactor codecov

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

Challenge

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

Progress

4 out of 50 stars.

progress bar 8 percent

Running locally

this repo was build and tested with node v20, 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 like this

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

You can start tests with

npm test