aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAbigail <abigail@abigail.be>2021-01-28 14:40:19 +0100
committerAbigail <abigail@abigail.be>2021-03-04 18:57:08 +0100
commit38ab6a4d0f05b3ee63080c497e486d1b9e2591d8 (patch)
treeb44a055e92b9cb3045e5289557a6edf5ef81a122
parent2e7bba2423ac520245be83ea15504303968b466b (diff)
downloadperlweeklychallenge-club-38ab6a4d0f05b3ee63080c497e486d1b9e2591d8.tar.gz
perlweeklychallenge-club-38ab6a4d0f05b3ee63080c497e486d1b9e2591d8.tar.bz2
perlweeklychallenge-club-38ab6a4d0f05b3ee63080c497e486d1b9e2591d8.zip
Add challenge descriptions to README.
-rw-r--r--challenge-004/abigail/README.md21
1 files changed, 21 insertions, 0 deletions
diff --git a/challenge-004/abigail/README.md b/challenge-004/abigail/README.md
new file mode 100644
index 0000000000..d7378888c0
--- /dev/null
+++ b/challenge-004/abigail/README.md
@@ -0,0 +1,21 @@
+# Solutions by Abigail
+
+## [Challenge 1](https://perlweeklychallenge.org/blog/perl-weekly-challenge-004/#challenge-1)
+
+Write a script to output the same number of PI digits as the size
+of your script. Say, if your script size is `10`, it should print
+`3.141592653`.
+
+### Solutions
+
+
+## [Challenge 2](https://perlweeklychallenge.org/blog/perl-weekly-challenge-004/#challenge-2)
+
+You are given a file containing a list of words (case insensitive
+1 word per line) and a list of letters. Print each word from the
+file that can be made using only letters from the list. You can use
+each letter only once (though there can be duplicates and you can
+use each of them once), you don't have to use all the letters.
+(Disclaimer: The challenge was proposed by Scimon Proctor)
+
+### Solutions