Skip to content

sokhuong-uon/advent-of-code-2023

Repository files navigation

Advent Of Code 2023

Testing

Test everything

cargo test --workspace

Test a crate or lib

cargo test -p day06

or

cargo test -p day14

Run solution

Change the code inside main.or to each solution.

Run day 13 part 2

use day13::part2;

fn main() {
    println!("{}", part2::solution::main());
}

Run day 14 part 1

use day14::part1;

fn main() {
    println!("{}", part1::solution::main());
}

Problems solved

Day Part 1 Part 2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25