aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAbigail <abigail@abigail.be>2021-01-27 20:05:47 +0100
committerAbigail <abigail@abigail.be>2021-01-27 20:05:47 +0100
commit0b2635ec6cfe8f8605c9492c924b8619e3d6eb3c (patch)
tree8c869f1fa9cc5ddc7c41e0656f8fb7d601456c35
parent1fef227533546854892b0609d5cf13c6895f3247 (diff)
downloadperlweeklychallenge-club-0b2635ec6cfe8f8605c9492c924b8619e3d6eb3c.tar.gz
perlweeklychallenge-club-0b2635ec6cfe8f8605c9492c924b8619e3d6eb3c.tar.bz2
perlweeklychallenge-club-0b2635ec6cfe8f8605c9492c924b8619e3d6eb3c.zip
README
-rw-r--r--challenge-003/abigail/README1
-rw-r--r--challenge-003/abigail/README.md19
2 files changed, 19 insertions, 1 deletions
diff --git a/challenge-003/abigail/README b/challenge-003/abigail/README
deleted file mode 100644
index 5f0d73ae16..0000000000
--- a/challenge-003/abigail/README
+++ /dev/null
@@ -1 +0,0 @@
-Solution by Abigail
diff --git a/challenge-003/abigail/README.md b/challenge-003/abigail/README.md
new file mode 100644
index 0000000000..87eff47adc
--- /dev/null
+++ b/challenge-003/abigail/README.md
@@ -0,0 +1,19 @@
+# Solution by Abigail
+
+## [Challenge #1](https://perlweeklychallenge.org/blog/perl-weekly-challenge-003/#challenge-1)
+Create a script to generate `5`-smooth numbers, whose prime divisors
+are less or equal to `5`. They are also called Hamming/Regular/Ugly
+numbers. For more information, please check this
+[wikipedia](https://en.wikipedia.org/wiki/Regular_number).
+
+
+### Solutions
+
+
+## [Challenge #2](https://perlweeklychallenge.org/blog/perl-weekly-challenge-003/#challenge-2)
+Create a script that generates Pascal Triangle. Accept number of
+rows from the command line. The Pascal Triangle should have at least
+3 rows. For more information about Pascal Triangle, check this
+[wikipedia](https://en.wikipedia.org/wiki/Pascal%27s_triangle) page.
+
+### Solutions