11 lines
202 B
Nix
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;
|
|
}
|