diff options
| author | wanderdoc <wanderdoc@users.noreply.github.com> | 2025-05-06 19:21:41 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-05-06 19:21:41 +0200 |
| commit | 4a7e6e23bfd82d8e8a03a0bd507e90437e8f158f (patch) | |
| tree | ddc2f231ef4c41887a5b4fe5c9cb1248989dd2fa /challenge-320 | |
| parent | a3004b66fe54f51311af49e49a071f69035113bd (diff) | |
| download | perlweeklychallenge-club-4a7e6e23bfd82d8e8a03a0bd507e90437e8f158f.tar.gz perlweeklychallenge-club-4a7e6e23bfd82d8e8a03a0bd507e90437e8f158f.tar.bz2 perlweeklychallenge-club-4a7e6e23bfd82d8e8a03a0bd507e90437e8f158f.zip | |
Create ch-2.pl
Diffstat (limited to 'challenge-320')
| -rw-r--r-- | challenge-320/wanderdoc/perl/ch-2.pl | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/challenge-320/wanderdoc/perl/ch-2.pl b/challenge-320/wanderdoc/perl/ch-2.pl new file mode 100644 index 0000000000..60b2981356 --- /dev/null +++ b/challenge-320/wanderdoc/perl/ch-2.pl @@ -0,0 +1,56 @@ +#!perl +use strict; +use warnings FATAL => qw(all); + +=prompt +You are given an array of positive integers. +Write a script to return the absolute difference between digit sum and element sum of the given array. + +Example 1 + +Input: @ints = (1, 23, 4, 5) +Output: 18 + +Element sum: 1 + 23 + 4 + 5 => 33 +Digit sum: 1 + 2 + 3 + 4 + 5 => 15 +Absolute difference: | 33 - 15 | => 18 + + +Example 2 + +Input: @ints = (1, 2, 3, 4, 5) +Output: 0 + +Element sum: 1 + 2 + 3 + 4 + 5 => 15 +Digit sum: 1 + 2 + 3 + 4 + 5 => 15 +Absolute difference: | 15 - 15 | => 0 + + +Example 3 + +Input: @ints = (1, 2, 34) +Output: 27 + +Element sum: 1 + 2 + 34 => 37 +Digit sum: 1 + 2 + 3 + 4 => 10 +Absolute difference: | 37 - 10 | => 27 +=cut + + + +use List::Util qw(sum); +use Test2::V0 -no_srand => 1; + +is(sum_difference(1, 23, 4, 5), 18, 'Example 1'); +is(sum_difference(1, 2, 3, 4, 5), 0, 'Example 2'); +is(sum_difference(1, 2, 34), 27, 'Example 3'); + +done_testing(); + +sub sum_difference +{ + my @arr = @_; + my $elm_sum = sum(@arr); + my $digit_sum = sum( map { split(//, $_) } @arr ); + return abs($elm_sum - $digit_sum); +} |
