Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

My solutions to Advent of Code 2022
https://github.com/schneedotdev/aoc-2022

advent-of-code-2022 deno golang typescript

Last synced: about 2 months ago
JSON representation

My solutions to Advent of Code 2022

Awesome Lists containing this project

README

        

# Advent of Code - 2022

My solutions to [Advent of Code](https://adventofcode.com/) 2022, written in TypeScript.

## How to run

### TypeScript
`cd` into a day's directory, then the typescript folder, and execute `deno run --allow-read .ts`

### Go
`cd` into a day's directory, then the go's folder, and execute `go run main.go`

## Directory Outline

```
|_ Day
|_ input.txt -> provided input
|_ go
|_ main.go -> go solutions for parts a and b
|_ typescript
|_ a.ts -> typescript part a solution
|_ b.ts -> typescript part b solution
```