aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrobbie-hatley <Robbie.Hatley@gmail.com>2023-04-27 00:48:25 -0700
committerrobbie-hatley <Robbie.Hatley@gmail.com>2023-04-27 00:48:25 -0700
commit55dea37ed6ad367eb42a3c22095b80977fe4a1c4 (patch)
tree31e495ad16061c72e1a2567d90e53f33ed2b6caf
parent8b713fc25fbce7655ee3d3ad15817b2f003425aa (diff)
downloadperlweeklychallenge-club-55dea37ed6ad367eb42a3c22095b80977fe4a1c4.tar.gz
perlweeklychallenge-club-55dea37ed6ad367eb42a3c22095b80977fe4a1c4.tar.bz2
perlweeklychallenge-club-55dea37ed6ad367eb42a3c22095b80977fe4a1c4.zip
fixed error
-rwxr-xr-xchallenge-214/robbie-hatley/perl/ch-1.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/challenge-214/robbie-hatley/perl/ch-1.pl b/challenge-214/robbie-hatley/perl/ch-1.pl
index f10c9cfae2..1e4bb086ee 100755
--- a/challenge-214/robbie-hatley/perl/ch-1.pl
+++ b/challenge-214/robbie-hatley/perl/ch-1.pl
@@ -44,7 +44,7 @@ and sort that array in-situ (don't make multiple copies) as many times and ways
INPUT / OUTPUT NOTES:
Input is via either built-in variables or via @ARGV. If using @ARGV, provide one argument which must be a single-quoted
array of arrays in proper Perl syntax, with each inner array being a sequence of non-negative integers, like so:
-./ch-1.pl '([0,40,97,50,40],[3,1,38,47,38]),[17,42,47,42,42,50]'
+./ch-1.pl '([0,40,97,50,40],[3,1,38,47,38],[17,42,47,42,42,50])'
Output is to STDOUT and will be each list of scores in original order, followed by a positionally-corresponding list of
ranks.