Solutions to Advent of Code 2022
  • TypeScript 100%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2022-12-03 11:56:11 -06:00
.vscode setup Deno 2022-12-02 08:07:48 -06:00
.gitattributes Initial commit 2022-12-02 07:35:16 -06:00
01.A.ts rename files 2022-12-03 11:02:03 -06:00
01.B.ts rename files 2022-12-03 11:02:03 -06:00
01.input.ts solve day 1 challenges 2022-12-02 08:08:00 -06:00
02.A.ts rename files 2022-12-03 11:02:03 -06:00
02.B.ts rename files 2022-12-03 11:02:03 -06:00
02.input.ts solve day 2 2022-12-02 22:08:35 -06:00
03.A.ts solve day 3 2022-12-03 11:56:11 -06:00
03.B.ts solve day 3 2022-12-03 11:56:11 -06:00
03.input.ts solve day 3 2022-12-03 11:56:11 -06:00
LICENSE Initial commit 2022-12-02 07:35:16 -06:00
README.md update the readme 2022-12-03 11:10:06 -06:00

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.ts module 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