summary refs log tree commit diff homepage
path: root/2021/day01.pl
blob: f4ab273620d1cb80e238767a9a21aa82d39da868 (plain) (blame)
1
2
3
4
5
6
my $last, $incs;
while (<>) {
	$incs++ if ($last && $_ > $last);
	$last = $_;
}
print "$incs\n";