aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuca Ferrari <fluca1978@gmail.com>2020-06-08 12:22:37 +0200
committerLuca Ferrari <fluca1978@gmail.com>2020-06-08 12:22:37 +0200
commitb4b337a1c7dc60f7ed0a5dd109927a28e35aed58 (patch)
tree2ce2c22e7218208c3f5921bdf7941dc36dfd9c32
parent0e8a9a28fb78db2f8daaa7cc882b191cfbbb95b4 (diff)
downloadperlweeklychallenge-club-b4b337a1c7dc60f7ed0a5dd109927a28e35aed58.tar.gz
perlweeklychallenge-club-b4b337a1c7dc60f7ed0a5dd109927a28e35aed58.tar.bz2
perlweeklychallenge-club-b4b337a1c7dc60f7ed0a5dd109927a28e35aed58.zip
Blog references.
-rw-r--r--challenge-064/luca-ferrari/blog-1.txt1
-rw-r--r--challenge-064/luca-ferrari/blog-2.txt1
-rw-r--r--challenge-064/luca-ferrari/raku/ch-1.p62
3 files changed, 4 insertions, 0 deletions
diff --git a/challenge-064/luca-ferrari/blog-1.txt b/challenge-064/luca-ferrari/blog-1.txt
new file mode 100644
index 0000000000..4a704585dd
--- /dev/null
+++ b/challenge-064/luca-ferrari/blog-1.txt
@@ -0,0 +1 @@
+https://fluca1978.github.io/2020/06/08/PerlWeeklyChallenge64.html#task1
diff --git a/challenge-064/luca-ferrari/blog-2.txt b/challenge-064/luca-ferrari/blog-2.txt
new file mode 100644
index 0000000000..eeb2064fce
--- /dev/null
+++ b/challenge-064/luca-ferrari/blog-2.txt
@@ -0,0 +1 @@
+https://fluca1978.github.io/2020/06/08/PerlWeeklyChallenge64.html#task2
diff --git a/challenge-064/luca-ferrari/raku/ch-1.p6 b/challenge-064/luca-ferrari/raku/ch-1.p6
index bdce99d3a6..72cfad7332 100644
--- a/challenge-064/luca-ferrari/raku/ch-1.p6
+++ b/challenge-064/luca-ferrari/raku/ch-1.p6
@@ -44,6 +44,8 @@ class Node {
return $!right if $!right && $!down && $!right.value < $!down.value;
return $!down;
}
+
+
}