Solutions to Advent of Code 2022
- TypeScript 100%
| Filename | Latest commit message | Latest commit date |
|---|---|---|
| .vscode | ||
| .gitattributes | ||
| 01.A.ts | ||
| 01.B.ts | ||
| 01.input.ts | ||
| 02.A.ts | ||
| 02.B.ts | ||
| 02.input.ts | ||
| 03.A.ts | ||
| 03.B.ts | ||
| 03.input.ts | ||
| LICENSE | ||
| README.md | ||
This repository contains solutions for Advent of Code 2022, programmed in TypeScript.
The file naming convention is:
- A number corresponding to the day of the problem.
- A letter indicating which sub-problem it is for that day.
- A
*.input.tsmodule for providing the problem input data, which is usually quite large.
You can run these yourself using Deno. For example, to get the solution for the first part of day 2, run the command:
deno run 02.A.ts