Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/schneedotdev/aoc-2022
- Owner: schneedotdev
- Created: 2022-12-01T18:58:26.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-12-14T02:38:19.000Z (about 2 years ago)
- Last Synced: 2024-06-21T20:04:05.988Z (7 months ago)
- Topics: advent-of-code-2022, deno, golang, typescript
- Language: TypeScript
- Homepage:
- Size: 67.4 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```