aoc2022/aoc.bqn

76 lines
2.4 KiB
BQN
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# a‿b Sub x: the b-length subarray starting at a
Sub {ab𝕊𝕩:ba𝕩}
# e Split xs: split xs on occurrences of e (default 0)
Split {( 1¨(1)) Sub𝕩¨ (» ¨ -») /w¨𝕩w𝕨0}
# n Chunk xs: split into chunks of length n (the last one might be smaller)
Chunk {(𝕨÷˜𝕩)𝕩}
Day1 {( (+´3)) +´¨ •BQN1 "" Split •FLines 𝕩}
# ⟨ 72602 207410 ⟩
Day2 {
B (A {1+𝕩+3×3|1+𝕩-𝕨}) {3|𝕨+𝕩-1}
+´ (AB)´{"AX"-˜02𝕩}¨ •FLines 𝕩
}
# ⟨ 17189 13490 ⟩
Day3 {
Prio - 'Z'"`&"
A +´ {(Prio¨×𝕩)𝕨}´(<˘ 2)¨
B +´ {abc:(Prio¨a)×b(a)c}¨(3Chunk)(¨)
(AB) •FLines 𝕩
}
# ⟨ 7683 2488 ⟩
Day4 {
Line •BQN '‿'("-,")¨ # hehe
F {´´˘´1(32)𝕩˜𝕨-'a'}
A "cabddbac"F, B "cabcacda"F
+´ (AB)Line¨ •FLines 𝕩
}
# ⟨ 536 845 ⟩
Day5 {
inp •FLines 𝕩
Start {(𝕨=0)¨/ 𝕩}
stks ' '/¨ <˘> (1¨ 4Chunk)¨ '[' Start inp
todo •BQN1 (135 ' 'Split)¨ 'm' Start inp
_Do1 {
nst 𝕩 - 011
lr n () s𝕨
(𝔽 l)(t) r(s) 𝕨
}
_Do {¨ 𝕨𝔽_Do1˜´𝕩}, A _Do, B _Do
stks (AB) todo
}
# ⟨ "QNNTGTPFN" "GGNPJBTTR" ⟩
Day6 {{𝕨+ / ˘ 𝕨𝕩}(•FChars 𝕩)¨ 414}
# ⟨ 1929 3298 ⟩
Day8 {
_rots {Fx𝔽𝕩, >{F𝕏x}¨,,˘,}
A {+´ ˝ ´(>1)¨ 𝕩}
B {´ ×˝ {1(1-˜𝕩) (/) 𝕩}¨ 𝕩}
(AB) (¯1)˘_rots '0'-˜ >•FLines 𝕩
}
# ⟨ 1843 180000 ⟩
Day10 {
Line 0 ·•BQN 5
A (+´ 19) (×1+)
B " █" (1|-)()˘
(AB) 40 +` 1»Line¨ •FLines 𝕩
}
# ⟨ 13060 "FJUBULRZ" ⟩
# (but the string is a big banner)
Day18 { # part 1 only :[
grid (> 1+´) •BQN¨ '‿'(=',')0 •FLines 𝕩
touch +´ «» {(𝕎𝕩)grid} 1+3
+´ (6×grid)-touch
}
# 3470