๐ŸŽ„ advent of code 2025
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

small thingy

okk.moe dcc80430 b2cf41a7

verified
+1 -1
+1 -1
day5/day5.gleam
··· 43 43 [] -> [v] 44 44 [last, ..rest] -> 45 45 case v { 46 - #(l, r) if last.1 >= l && last.1 <= r -> [#(last.0, r), ..rest] 46 + #(l, r) if last.1 >= l && last.1 < r -> [#(last.0, r), ..rest] 47 47 #(l, _) if last.1 < l -> [v, ..acc] 48 48 _ -> acc 49 49 }