Skip to content

Commit 377b086

Browse files
committed
AOC: add 2024 01 tests
1 parent 1a88776 commit 377b086

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

aoc_tests/2024/01/tests_2024_01.toml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
#################################
2+
# Advent of Code Tests #
3+
# Year: 2024 #
4+
# Day: 01 #
5+
#################################
6+
[test.test_01]
7+
part = 1
8+
input = """3 4
9+
4 3
10+
2 5
11+
1 3
12+
3 9
13+
3 3"""
14+
answer = 11
15+
16+
[test.test_02]
17+
part = 2
18+
input = """3 4
19+
4 3
20+
2 5
21+
1 3
22+
3 9
23+
3 3"""
24+
answer = 31

0 commit comments

Comments
 (0)