Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jamesseanwright/aoc-2022-deno
Solutions to Advent of Code 2022 written in TypeScript and running on Deno
https://github.com/jamesseanwright/aoc-2022-deno
advent-of-code advent-of-code-2022 adventofcode aoc2022
Last synced: 21 days ago
JSON representation
Solutions to Advent of Code 2022 written in TypeScript and running on Deno
- Host: GitHub
- URL: https://github.com/jamesseanwright/aoc-2022-deno
- Owner: jamesseanwright
- License: gpl-3.0
- Created: 2022-12-01T09:53:10.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-11T10:11:53.000Z (10 months ago)
- Last Synced: 2024-10-05T17:16:11.909Z (about 1 month ago)
- Topics: advent-of-code, advent-of-code-2022, adventofcode, aoc2022
- Language: TypeScript
- Homepage:
- Size: 19.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Advent of Code 2022
[![CI](https://github.com/jamesseanwright/aoc-2022-deno/actions/workflows/ci.yml/badge.svg)](https://github.com/jamesseanwright/aoc-2022-deno/actions/workflows/ci.yml)
My solutions to days 1-13 (bailing early as I don't want to spend the bulk of my
Christmas break staring at a computer screen LOL) of
[AoC 2022](https://adventofcode.com/2022), written in TypeScript and running on
Deno.## Running the Solutions/Tests
```sh
$ deno test -A # runs the tests for a particular day e.g. deno test -A day01
$ deno test -A # runs all the tests for all completed days
```