Skip to content

sunilbpandey/advent-of-code

Repository files navigation

Advent of Code

These are my solutions to Advent of Code problems.

Go TypeScript

Progress

2021 2022 2023
01 ⭑⭑ ⭑⭑ ⭑⭑
02 ⭑⭑ ⭑⭑ ⭑⭑
03 ⭑⭑ ⭑⭑ ⭑⭑
04 ⭑⭑ ⭑⭑ ⭑⭑
05 ⭑⭑ ⭑⭑ ⭑⭑
06 ⭑⭑ ⭑⭑ ⭑⭑
07 ⭑⭑ ⭑⭑ ⭑⭑
08 ⭑⭑ ⭑⭑
09 ⭑⭑ ⭑⭑ ⭑⭑
10 ⭑⭑ ⭑⭑ ⭑⭑
11 ⭑⭑ ⭑⭑ ⭑⭑
12 ⭑⭑ ⭑⭑
13 ⭑⭑ ⭑⭑ ⭑⭑
14 ⭑⭑ ⭑⭑
15 ⭑⭑ ⭑⭑
16 ⭑⭑ ⭑⭑
17 ⭑⭑
18 ⭑⭑
21
25

Usage

Install Just

Refer to Just Programmer's Manual.

Install dependencies

just setup

Solve a specific day

Go

just go <YEAR> <DAY> <PART>

TypeScript

just ts <YEAR> <DAY> <PART>

Run tests

Go

just test-go

TypeScript

just test-ts

All tests

just test