diff options
| author | Adam Russell <adam.russell@optum.com> | 2019-04-12 15:43:43 -0400 |
|---|---|---|
| committer | Adam Russell <adam.russell@optum.com> | 2019-04-12 15:43:43 -0400 |
| commit | 8b74c2038a052927add114b4a69f4b7c214e1ad0 (patch) | |
| tree | ff75fc55b9c3d5d9dd9eb40760899d7c3bc32fd4 | |
| parent | 515a39407d03881d9e91d63561d9009681a3d0c6 (diff) | |
| download | perlweeklychallenge-club-8b74c2038a052927add114b4a69f4b7c214e1ad0.tar.gz perlweeklychallenge-club-8b74c2038a052927add114b4a69f4b7c214e1ad0.tar.bz2 perlweeklychallenge-club-8b74c2038a052927add114b4a69f4b7c214e1ad0.zip | |
initial commit for challenge-003
| -rw-r--r-- | challenge-003/adam-russell/blog.txt | 1 | ||||
| -rw-r--r-- | challenge-003/adam-russell/perl5/ch-1.pl | 7 | ||||
| -rw-r--r-- | challenge-003/adam-russell/perl5/ch-2.pl | 8 |
3 files changed, 16 insertions, 0 deletions
diff --git a/challenge-003/adam-russell/blog.txt b/challenge-003/adam-russell/blog.txt new file mode 100644 index 0000000000..8be9455506 --- /dev/null +++ b/challenge-003/adam-russell/blog.txt @@ -0,0 +1 @@ +XXXhttps://adamcrussell.livejournal.com/620.html diff --git a/challenge-003/adam-russell/perl5/ch-1.pl b/challenge-003/adam-russell/perl5/ch-1.pl new file mode 100644 index 0000000000..199e274ec1 --- /dev/null +++ b/challenge-003/adam-russell/perl5/ch-1.pl @@ -0,0 +1,7 @@ +use strict; +use warnings; +## +# 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. +## + diff --git a/challenge-003/adam-russell/perl5/ch-2.pl b/challenge-003/adam-russell/perl5/ch-2.pl new file mode 100644 index 0000000000..b1288d4870 --- /dev/null +++ b/challenge-003/adam-russell/perl5/ch-2.pl @@ -0,0 +1,8 @@ +use strict; +use warnings; +## +# Create a script that generates Pascal Triangle. +# Accept number of rows from the command line. +# The Pascal Triangle should have at least 3 rows. +## + |
