Skip to content

Commit 6170830

Browse files
authored
Merge pull request #5 from nerdatmath/push-unvxyqsrqtkp
2023 day 8.
2 parents 4438dc5 + f9e68fc commit 6170830

File tree

15 files changed

+1171
-0
lines changed

15 files changed

+1171
-0
lines changed

2023/08/Cargo.toml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[package]
2+
name = "y2023d08"
3+
version = "0.1.0"
4+
edition = "2024"
5+
6+
[dependencies]
7+
elsa = "1.11.2"
8+
lazy-regex = "3.4.1"
9+
num-integer = "0.1.46"
10+
typed-arena = "2.0.2"

2023/08/data/example1

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
RL
2+
3+
AAA = (BBB, CCC)
4+
BBB = (DDD, EEE)
5+
CCC = (ZZZ, GGG)
6+
DDD = (DDD, DDD)
7+
EEE = (EEE, EEE)
8+
GGG = (GGG, GGG)
9+
ZZZ = (ZZZ, ZZZ)

2023/08/data/example2

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
LLR
2+
3+
AAA = (BBB, BBB)
4+
BBB = (AAA, ZZZ)
5+
ZZZ = (ZZZ, ZZZ)

2023/08/data/example3

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
LR
2+
3+
11A = (11B, XXX)
4+
11B = (XXX, 11Z)
5+
11Z = (11B, XXX)
6+
22A = (22B, XXX)
7+
22B = (22C, 22C)
8+
22C = (22Z, 22Z)
9+
22Z = (22B, 22B)
10+
XXX = (XXX, XXX)

0 commit comments

Comments
 (0)