From 4cf3bc5a99d49d38ca4c56629e819a9cc679f983 Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Fri, 12 Apr 2019 19:03:28 +0100 Subject: - Moved README to correct folder. --- challenge-003/duncan-c-white/README | 9 ++++++++- challenge-003/duncan-c-white/perl5/README | 8 -------- 2 files changed, 8 insertions(+), 9 deletions(-) delete mode 100644 challenge-003/duncan-c-white/perl5/README 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. -- cgit