adventofcode/2023/07/part2.t

14 lines
148 B
Perl
Raw Normal View History

2023-12-07 15:01:29 +00:00
use 5.38.0;
use Test2::V0;
use Path::Tiny;
use Part2;
my $input = path('input')->slurp;
is Part2::solution_2($input) => 'TODO';
done_testing;