adventofcode/2015/10/repeat2.pl

11 lines
108 B
Perl
Raw Permalink Normal View History

2017-12-05 01:20:16 +00:00
use 5.20.0;
my $s = <>;
chomp $s;
say $s;
$s =~ s/(.)\1*/ length($&) . $1 /eg for 1..50;
say length $s;