Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2024 Day 3 #73

Merged
merged 1 commit into from
Dec 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions 2024/03/JalonSolov.v
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
import regex
import os

instructions := os.read_file('instructions-part2.input')!

mut mul_re := regex.regex_opt(r"(mul\(\d{1,3},\d{1,3}\))|(do(n't)?\(\))")!
mut mul_total := 0
mut enabled_total := 0

mut enabled := true

mut index := 0

for index < instructions.len {
start, end := mul_re.find_from(instructions, index)
if start >= 0 {
group := instructions[start..end]
match group[0] {
`m` {
result := group[4..group.index(',')?].int() * group[group.index(',')? + 1..].int()
mul_total += result
if enabled {
enabled_total += result
}
}
`d` {
enabled = (group == 'do()')
}
else {
// should never happen
}
}
index = end
} else {
break
}
}

println('Part 1: ${mul_total}')
println('Part 2: ${enabled_total}')
2 changes: 2 additions & 0 deletions known/2024/03/JalonSolov.out
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Part 1: 161
Part 2: 48
Loading