aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJared Martin <jaredor+github@gmail.com>2020-05-02 03:29:19 -0500
committerGitHub <noreply@github.com>2020-05-02 03:29:19 -0500
commita7123dc264f76d4f43eee4255d10a2306a78107d (patch)
tree8f6ee1843fdc3a7a82baca7f6c391ba9943cd1f7
parent4f8dd065522d3ca1e2a88fe7ea2ce0fc1a18a128 (diff)
parenta269e372baee93e8695e400a0c92fbdef59064a1 (diff)
downloadperlweeklychallenge-club-a7123dc264f76d4f43eee4255d10a2306a78107d.tar.gz
perlweeklychallenge-club-a7123dc264f76d4f43eee4255d10a2306a78107d.tar.bz2
perlweeklychallenge-club-a7123dc264f76d4f43eee4255d10a2306a78107d.zip
Merge pull request #9 from jaredor/pwc058
Insert blog entry and also remove Data::Dump
-rw-r--r--challenge-058/jaredor/blog.txt1
-rwxr-xr-xchallenge-058/jaredor/perl/ch-1.pl1
-rwxr-xr-xchallenge-058/jaredor/perl/ch-2.pl2
3 files changed, 2 insertions, 2 deletions
diff --git a/challenge-058/jaredor/blog.txt b/challenge-058/jaredor/blog.txt
new file mode 100644
index 0000000000..266e5e5ba9
--- /dev/null
+++ b/challenge-058/jaredor/blog.txt
@@ -0,0 +1 @@
+http://blogs.perl.org/users/jared_martin/2020/05/pwc-058-task-1-compare-version-task-2-ordered-lineup.html
diff --git a/challenge-058/jaredor/perl/ch-1.pl b/challenge-058/jaredor/perl/ch-1.pl
index b2c437d45b..67018e7dce 100755
--- a/challenge-058/jaredor/perl/ch-1.pl
+++ b/challenge-058/jaredor/perl/ch-1.pl
@@ -2,7 +2,6 @@
use v5.012; # Using keys on arrays
use warnings;
-use Data::Dump qw(pp);
use List::Util qw(max min uniq);
# PWC 058, Task #1 : Compare Version
diff --git a/challenge-058/jaredor/perl/ch-2.pl b/challenge-058/jaredor/perl/ch-2.pl
index ecbc14f8c4..dfded7301d 100755
--- a/challenge-058/jaredor/perl/ch-2.pl
+++ b/challenge-058/jaredor/perl/ch-2.pl
@@ -7,7 +7,7 @@ use List::Util qw(all any);
use List::MoreUtils qw(uniq indexes last_index);
# PWC 058, TASK #2 : Ordered Lineup
-#
+
# Write a script to arrange people in a lineup according to how many taller
# people are in front of each person in line. You are given two arrays. @H is a
# list of unique heights, in any order. @T is a list of how many taller people