diff options
| author | Mariano Spadaccini <spadacciniweb@gmail.com> | 2025-09-17 13:43:37 +0200 |
|---|---|---|
| committer | Mariano Spadaccini <spadacciniweb@gmail.com> | 2025-09-17 13:43:37 +0200 |
| commit | 68a9eb2acb501eab465d94c31c8e56b738e6a07b (patch) | |
| tree | 9ec75cd2ee97b94419addb90aac5d53b776763d1 | |
| parent | 55d28e9bcf39421ac381128d84d3a3beaa518a27 (diff) | |
| download | perlweeklychallenge-club-68a9eb2acb501eab465d94c31c8e56b738e6a07b.tar.gz perlweeklychallenge-club-68a9eb2acb501eab465d94c31c8e56b738e6a07b.tar.bz2 perlweeklychallenge-club-68a9eb2acb501eab465d94c31c8e56b738e6a07b.zip | |
PWC 339: add ch-1 in Perl
| -rw-r--r-- | challenge-339/spadacciniweb/perl/ch-2.pl | 100 |
1 files changed, 100 insertions, 0 deletions
diff --git a/challenge-339/spadacciniweb/perl/ch-2.pl b/challenge-339/spadacciniweb/perl/ch-2.pl new file mode 100644 index 0000000000..1171088ad2 --- /dev/null +++ b/challenge-339/spadacciniweb/perl/ch-2.pl @@ -0,0 +1,100 @@ +#!/usr/bin/env perl + +# Task 2: Peak Point +# Submitted by: Mohammad Sajid Anwar +# You are given an array of altitude gain. +# Write a script to find the peak point gained. +# +# Example 1 +# Input: @gain = (-5, 1, 5, -9, 2) +# Output: 1 +# +# start: 0 +# 1st change: 0 + (-5) = -5 +# 2nd change: -5 + 1 = -4 +# 3rd change: -4 + 5 = 1 +# 4th change: 1 + (-9) = -8 +# 5th change: -8 + 2 = -6 +# +# max(0, -5, -4, 1, -8, -6) = 1 +# +# Example 2 +# Input: @gain = (10, 10, 10, -25) +# Output: 30 +# +# start: 0 +# 1st change: 0 + 10 = 10 +# 2nd change: 10 + 10 = 20 +# 3rd change: 20 + 10 = 30 +# 4th change: 30 + (-25) = 5 +# +# max(0, 10, 20, 30, 5) = 30 +# +# Example 3 +# Input: @gain = (3, -4, 2, 5, -6, 1) +# Output: 6 +# +# start: 0 +# 1st change: 0 + 3 = 3 +# 2nd change: 3 + (-4) = -1 +# 3rd change: -1 + 2 = 1 +# 4th change: 1 + 5 = 6 +# 5th change: 6 + (-6) = 0 +# 6th change: 0 + 1 = 1 +# +# max(0, 3, -1, 1, 6, 0, 1) = 6 +# +# Example 4 +# Input: @gain = (-1, -2, -3, -4) +# Output: 0 +# +# start: 0 +# 1st change: 0 + (-1) = -1 +# 2nd change: -1 + (-2) = -3 +# 3rd change: -3 + (-3) = -6 +# 4th change: -6 + (-4) = -10 +# +# max(0, -1, -3, -6, -10) = 0 +# +# Example 5 +# Input: @gain = (-10, 15, 5) +# Output: 10 +# +# start: 0 +# 1st change: 0 + (-10) = -10 +# 2nd change: -10 + 15 = 5 +# 3rd change: 5 + 5 = 10 +# +# max(0, -10, 5, 10) = 10 + +use strict; +use warnings; +use List::Util qw(max); + +my @gain = (-5, 1, 5, -9, 2); +get_max_peak(\@gain); + +@gain = (10, 10, 10, -25); +get_max_peak(\@gain); + +@gain = (3, -4, 2, 5, -6, 1); +get_max_peak(\@gain); + +@gain = (-1, -2, -3, -4); +get_max_peak(\@gain); + +@gain = (-10, 15, 5); +get_max_peak(\@gain); + +exit 0; + +sub get_max_peak { + my $array = shift; + + my @peak = (0); + foreach my $step (@$array) { + push @peak, $peak[-1] + $step; + } + printf "(%s) -> %d\n", (join ', ', @$array), + max @peak; +} |
