aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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.