diff options
| author | andrezgz <andrezgz@gmail.com> | 2019-08-12 09:22:30 -0300 |
|---|---|---|
| committer | andrezgz <andrezgz@gmail.com> | 2019-08-12 09:22:30 -0300 |
| commit | db568f042c9f8d72fe050204903afb6fd4beea04 (patch) | |
| tree | b2865d6cc54e5349bcf871e012e7ca058c98ca38 | |
| parent | 201f0efb74efe1ad527beaca31e320b1fb67b735 (diff) | |
| download | perlweeklychallenge-club-db568f042c9f8d72fe050204903afb6fd4beea04.tar.gz perlweeklychallenge-club-db568f042c9f8d72fe050204903afb6fd4beea04.tar.bz2 perlweeklychallenge-club-db568f042c9f8d72fe050204903afb6fd4beea04.zip | |
andrezgz challenge-020 fix challenge url in comment
| -rw-r--r-- | challenge-020/andrezgz/perl5/ch-1.pl | 2 | ||||
| -rw-r--r-- | challenge-020/andrezgz/perl5/ch-1.sh | 2 | ||||
| -rw-r--r-- | challenge-020/andrezgz/perl5/ch-2.pl | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/challenge-020/andrezgz/perl5/ch-1.pl b/challenge-020/andrezgz/perl5/ch-1.pl index ba3c444ef5..41369dbfda 100644 --- a/challenge-020/andrezgz/perl5/ch-1.pl +++ b/challenge-020/andrezgz/perl5/ch-1.pl @@ -1,6 +1,6 @@ #!/usr/bin/perl -# https://perlweeklychallenge.org/blog/perl-weekly-challenge-019/ +# https://perlweeklychallenge.org/blog/perl-weekly-challenge-020/ # Task #1 # Write a script to accept a string from command line and split it on change of character. # For example, if the string is "ABBCDEEF", then it should split like "A", "BB", "C", "D", "EE", "F". diff --git a/challenge-020/andrezgz/perl5/ch-1.sh b/challenge-020/andrezgz/perl5/ch-1.sh index b2b22220ec..6309fcfd5c 100644 --- a/challenge-020/andrezgz/perl5/ch-1.sh +++ b/challenge-020/andrezgz/perl5/ch-1.sh @@ -1,4 +1,4 @@ -# https://perlweeklychallenge.org/blog/perl-weekly-challenge-019/ +# https://perlweeklychallenge.org/blog/perl-weekly-challenge-020/ # Task #1 # Write a script to accept a string from command line and split it on change of character. # For example, if the string is "ABBCDEEF", then it should split like "A", "BB", "C", "D", "EE", "F". diff --git a/challenge-020/andrezgz/perl5/ch-2.pl b/challenge-020/andrezgz/perl5/ch-2.pl index 8344578299..daf25766d6 100644 --- a/challenge-020/andrezgz/perl5/ch-2.pl +++ b/challenge-020/andrezgz/perl5/ch-2.pl @@ -1,6 +1,6 @@ #!/usr/bin/perl -# https://perlweeklychallenge.org/blog/perl-weekly-challenge-019/ +# https://perlweeklychallenge.org/blog/perl-weekly-challenge-020/ # Task #2 # Write a script to print the smallest pair of Amicable Numbers. # For more information, please checkout wikipedia page. |
