https://github.com/dreyfus92/aoc-2022
An attempt to solve AoC 2022 challenges.
https://github.com/dreyfus92/aoc-2022
advent-of-code aoc-2022 deno typescript
Last synced: about 2 months ago
JSON representation
An attempt to solve AoC 2022 challenges.
- Host: GitHub
- URL: https://github.com/dreyfus92/aoc-2022
- Owner: dreyfus92
- Created: 2022-12-01T16:25:41.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-14T08:37:07.000Z (over 3 years ago)
- Last Synced: 2025-03-28T17:22:05.644Z (about 1 year ago)
- Topics: advent-of-code, aoc-2022, deno, typescript
- Language: TypeScript
- Homepage:
- Size: 50.8 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Advent of Code 2022
My solutions for Advent Of Code 2022.
## How to install Deno?
```sh
curl -fsSL https://deno.land/x/install/install.sh | sh
```
## Checking Deno is installed
```sh
deno --version
```
## How to run the code?
```ts
deno run --allow-read --allow-write --watch ./[day]/[a/b].ts
```