adventofcode/2023/07/Part1.pm

12 lines
97 B
Perl
Raw Normal View History

2023-12-07 15:01:29 +00:00
use 5.38.0;
package Part1;
use List::AllUtils qw/ /;
sub solution_1 ($input) {
...;
}
1;