diff options
| -rw-r--r-- | challenge-004/abigail/README.md | 21 |
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 |
