projects
/
advent_of_code_2023.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
First day
[advent_of_code_2023.git]
/
README.md
1
# AdventOfCode2023
2
3
https://adventofcode.com/2023
4
5
6
# Running tests
7
8
Example for day 1 tests:
9
10
~~~
11
cargo test day01 -- --nocapture
12
~~~
13
14
All tests:
15
16
~~~
17
cargo test -- --nocapture
18
~~~
19
20
21
# Running a day code
22
23
~~~
24
cargo run -- n
25
~~~
26
27
Where 'n' is a number from 1 to 25