adventofcode/2017/04/passwords.pl
2017-12-28 12:14:51 -05:00

9 lines
130 B
Perl

use 5.20.0;
use List::AllUtils qw/ uniq sum /;
say sum map {
my @u = uniq @$_;
@u == @$_;
}
map { chomp; [ split ] } <>;