Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/francisfuzz/aoc-2022


https://github.com/francisfuzz/aoc-2022

Last synced: about 8 hours ago
JSON representation

Awesome Lists containing this project

README

        

# A Repo for Advent of Code 2022 in TypeScript

## Instructions

```shell
# Clone the repo and change directory into it
git clone https://github.com/francisfuzz/aoc2022.git && cd aoc2022/

# Install the dependencies
npm install

# Option 1
# Run the build task to compile the TypeScript files, then run the file with `node`
npm run build
node dist/day1.js

# Option 2
# Use `ts-node` directly
npx ts-node day1/day1.ts
```

## Credits

Originally forked from https://github.com/colindembovsky/aoc2021. Moved to its own repository so it is a root repo.