day 4 puzzle 2
This commit is contained in:
parent
65beed1c51
commit
7bcab0b085
BIN
progress.png
BIN
progress.png
Binary file not shown.
Before Width: | Height: | Size: 110 KiB After Width: | Height: | Size: 110 KiB |
@ -5,4 +5,4 @@
|
||||
3:
|
||||
stars: 2
|
||||
4:
|
||||
stars: 1
|
||||
stars: 2
|
@ -40,7 +40,7 @@
|
||||
|
||||
let total = 0
|
||||
for y in range(h) {
|
||||
for x in range(h) {
|
||||
for x in range(w) {
|
||||
if lines.at(y).at(x) == "X" {
|
||||
total += check-xmas(lines, x, y)
|
||||
}
|
||||
|
@ -0,0 +1,33 @@
|
||||
#import "/src/utils.typ": *
|
||||
|
||||
#let solve(input) = {
|
||||
let lines = input.split("\n")
|
||||
let w = lines.first().len()
|
||||
let h = lines.len()
|
||||
|
||||
let perms = (("M", "S"), ("S", "M"))
|
||||
let total = 0
|
||||
for y in range(1, h - 1) {
|
||||
for x in range(1, w - 1) {
|
||||
if lines.at(y).at(x) == "A" {
|
||||
let tl = lines.at(y - 1).at(x - 1)
|
||||
let tr = lines.at(y - 1).at(x + 1)
|
||||
let bl = lines.at(y + 1).at(x - 1)
|
||||
let br = lines.at(y + 1).at(x + 1)
|
||||
let tlbr = (tl, br)
|
||||
let bltr = (bl, tr)
|
||||
if tlbr in perms and bltr in perms {
|
||||
total += 1
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return total
|
||||
}
|
||||
|
||||
#show-puzzle(
|
||||
4, 2,
|
||||
solve,
|
||||
example: 9
|
||||
)
|
BIN
src/main.pdf
BIN
src/main.pdf
Binary file not shown.
Loading…
Reference in New Issue
Block a user