]> www.fi.muni.cz Git - aoc.git/blob - 12a.pl
52d31deb074f3c55f58e8318f3bdf19a4a946714
[aoc.git] / 12a.pl
1 #!/usr/bin/perl -w
2
3 use v5.36;
4 use strict;
5 use experimental 'multidimensional';
6
7 chomp($_ = <>);
8 my $i;
9 s/^.//, $i++ while substr($_, 0, 14) =~ /(.).*\1/;
10 say $i + 14;
11