about summary refs log tree commit diff
path: root/day25.bqn
blob: 2af1c5e0b120c713992147eb4ee5d8143a58978b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
_fixcnt ← { 𝕩 ≡ 𝔽 𝕩 ? 𝕨 ; (𝕨+1) 𝕊 𝔽 𝕩 }

d←>•FLines "day25s"

•Show 1 { 𝕊 ⟨east, south⟩:
  east ↩ ((¯1⌽˘east)∧¬south∨east) ∨ 1⌽˘(¯1⌽˘east)∧south∨east
  south ↩ ((¯1⌽south)∧¬south∨east) ∨ 1⌽(¯1⌽south)∧south∨east
  east‿south
} _fixcnt (=⟜'>' ⋈ =⟜'v') d

# 601