adventofcode/2016/03/1.pl
Yanick Champoux fa621a4d25 2016-03
2017-12-28 12:18:49 -05:00

17 lines
270 B
Perl

use 5.20.0;
use Algorithm::Combinatorics qw/ partitions /;
use List::AllUtils qw/ sum any all /;
use DDP;
my $possible;
while(<>) {
my @x = split ' ';
use DDP; p @x;
next unless all { $x[$_] < sum( @x ) - $x[$_] } 0..2;
$possible++;
}
say $possible;