aboutsummaryrefslogtreecommitdiff
path: root/challenge-269/bob-lied/perl
diff options
context:
space:
mode:
Diffstat (limited to 'challenge-269/bob-lied/perl')
-rw-r--r--challenge-269/bob-lied/perl/ch-2.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/challenge-269/bob-lied/perl/ch-2.pl b/challenge-269/bob-lied/perl/ch-2.pl
index 6c99b8625c..4947e3f515 100644
--- a/challenge-269/bob-lied/perl/ch-2.pl
+++ b/challenge-269/bob-lied/perl/ch-2.pl
@@ -60,9 +60,10 @@ my $DoTest = 0;
GetOptions("test" => \$DoTest, "verbose" => \$Verbose);
exit(!runTest()) if $DoTest;
+say "(", join(", ", distElem(@ARGV)->@*), ")";
+
sub distElem(@ints)
{
- #return [] if $#ints < 1;
my @arr = ( [ (shift @ints) // () ], [ (shift @ints) // () ] );
push @{$arr[ ( $arr[0][-1] <= $arr[1][-1] ) ]}, $_ for @ints;