aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMohammad S Anwar <mohammad.anwar@yahoo.com>2019-04-12 19:03:28 +0100
committerMohammad S Anwar <mohammad.anwar@yahoo.com>2019-04-12 19:03:28 +0100
commit4cf3bc5a99d49d38ca4c56629e819a9cc679f983 (patch)
tree9a12503ef8303f1f39e341960d510d905fb8eae1
parent2a168d986d2f85acfc775ef50d48b84812502199 (diff)
downloadperlweeklychallenge-club-4cf3bc5a99d49d38ca4c56629e819a9cc679f983.tar.gz
perlweeklychallenge-club-4cf3bc5a99d49d38ca4c56629e819a9cc679f983.tar.bz2
perlweeklychallenge-club-4cf3bc5a99d49d38ca4c56629e819a9cc679f983.zip
- Moved README to correct folder.
-rw-r--r--challenge-003/duncan-c-white/README9
-rw-r--r--challenge-003/duncan-c-white/perl5/README8
2 files changed, 8 insertions, 9 deletions
diff --git a/challenge-003/duncan-c-white/README b/challenge-003/duncan-c-white/README
index 81f31dc7c0..d6a6cb2f04 100644
--- a/challenge-003/duncan-c-white/README
+++ b/challenge-003/duncan-c-white/README
@@ -1 +1,8 @@
-Solution by Duncan C. White
+I have investigated Challenge 1 (the Regular numbers) reasonably thoroughly,
+building and comparing 4 iterative solutions to generate them. I also
+investigated a Lazy List version, storing the tail of the list as a promise -
+a function to call when you wanted the next head item, and the returned tail
+is another promise - to generate the next item later when needed. However,
+I couldn't get that to work so abandoned it:-)
+
+Challenge 2 (Pascal's Triangle) by contrast is pretty basic and simple-minded.
diff --git a/challenge-003/duncan-c-white/perl5/README b/challenge-003/duncan-c-white/perl5/README
deleted file mode 100644
index d6a6cb2f04..0000000000
--- a/challenge-003/duncan-c-white/perl5/README
+++ /dev/null
@@ -1,8 +0,0 @@
-I have investigated Challenge 1 (the Regular numbers) reasonably thoroughly,
-building and comparing 4 iterative solutions to generate them. I also
-investigated a Lazy List version, storing the tail of the list as a promise -
-a function to call when you wanted the next head item, and the returned tail
-is another promise - to generate the next item later when needed. However,
-I couldn't get that to work so abandoned it:-)
-
-Challenge 2 (Pascal's Triangle) by contrast is pretty basic and simple-minded.