advent_of_code/2025/utils.nix
RingOfStorms (Joshua Bell) 1f92f032ca 2025 day 2
2025-12-08 16:40:21 -06:00

6 lines
177 B
Nix

{
toIntBase10 = str: builtins.fromJSON "${str}";
mod = a: b: a - b * (builtins.floor (a / b));
min = a: b: if a < b then a else b;
max = a: b: if a > b then a else b;
}