aboutsummaryrefslogtreecommitdiff
path: root/challenge-094
diff options
context:
space:
mode:
authorLuis Mochan <mochan@fis.unam.mx>2021-01-11 16:57:48 -0600
committerLuis Mochan <mochan@fis.unam.mx>2021-01-11 16:57:48 -0600
commit6a521c4dbf19efb58fab66d4d0770ca1248cdf1c (patch)
tree8049954d171881fe3950f915f624487be5226d8c /challenge-094
parent7ec2f58ca1aa0faff20f8620442b2e74fc7b4549 (diff)
downloadperlweeklychallenge-club-6a521c4dbf19efb58fab66d4d0770ca1248cdf1c.tar.gz
perlweeklychallenge-club-6a521c4dbf19efb58fab66d4d0770ca1248cdf1c.tar.bz2
perlweeklychallenge-club-6a521c4dbf19efb58fab66d4d0770ca1248cdf1c.zip
Correct comments linking to the blog entries
Diffstat (limited to 'challenge-094')
-rwxr-xr-xchallenge-094/wlmb/perl/ch-1.pl2
-rwxr-xr-xchallenge-094/wlmb/perl/ch-2.pl2
-rwxr-xr-xchallenge-094/wlmb/perl/ch-2a.pl2
3 files changed, 3 insertions, 3 deletions
diff --git a/challenge-094/wlmb/perl/ch-1.pl b/challenge-094/wlmb/perl/ch-1.pl
index 786cd26dc7..8050cc3b1e 100755
--- a/challenge-094/wlmb/perl/ch-1.pl
+++ b/challenge-094/wlmb/perl/ch-1.pl
@@ -2,7 +2,7 @@
# Perl weekly challenge 094
# Task 1: Group anagrams.
# From a list of strings recognize anagrams and group them.
-# See https:/wlmb.github.io/2020/01/04/PWC94/#task-1-group-anagrams
+# See https:/wlmb.github.io/2021/01/04/PWC94/#task-1-group-anagrams
use v5.12;
my %anagrams;
push @{$anagrams{join '', sort split '', $_}}, $_ foreach @ARGV;
diff --git a/challenge-094/wlmb/perl/ch-2.pl b/challenge-094/wlmb/perl/ch-2.pl
index 0fe64d2fbd..934e23bbe4 100755
--- a/challenge-094/wlmb/perl/ch-2.pl
+++ b/challenge-094/wlmb/perl/ch-2.pl
@@ -2,7 +2,7 @@
# Perl weekly challenge 094
# Task 2: Binary tree to linked list.
#
-# See https:/wlmb.github.io/2020/01/04/PWC94/#task-1-binary-tree-to-linked-list
+# See https:/wlmb.github.io/2021/01/04/PWC94/#task-1-binary-tree-to-linked-list
use v5.12;
use Text::Balanced qw(extract_bracketed extract_multiple);
diff --git a/challenge-094/wlmb/perl/ch-2a.pl b/challenge-094/wlmb/perl/ch-2a.pl
index c42b012cf8..6405f2a0c0 100755
--- a/challenge-094/wlmb/perl/ch-2a.pl
+++ b/challenge-094/wlmb/perl/ch-2a.pl
@@ -2,7 +2,7 @@
# Perl weekly challenge 094
# Task 2: Binary tree to linked list.
#
-# See https:/wlmb.github.io/2020/01/04/PWC94/#task-1-binary-tree-to-linked-list
+# See https:/wlmb.github.io/2021/01/04/PWC94/#task-1-binary-tree-to-linked-list
use v5.12;
package Tree;