Advent-of-Nix-2024/template/default.nix
2024-12-03 10:51:06 +01:00

11 lines
202 B
Nix

{ lib, utils, ... }:
with lib;
with builtins;
with utils;
let
records = map (l: map toInt (splitWhitespace l)) (readLines ./input);
lines = readLines ./input;
in {
part1 = null;
part2 = null;
}