Advent of Code 2022 using Deno 🦕 runtime and TypeScript.
Requires some version of Deno; these were written with 1.28.3.
# solve individual challenges by day...
deno run --allow-read=. day00/main.ts
# run the tests; they check that all the challenges solve correctly
# note that this might take a while... some hours for all of the them
deno test --allow-read=.
# to format all files, including Markdown
deno fmt