diff options
| author | Mohammad S Anwar <Mohammad.Anwar@yahoo.com> | 2019-08-12 15:02:03 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-08-12 15:02:03 +0100 |
| commit | c68da89f6f1840672d857f56360ea2bd89c80aaf (patch) | |
| tree | 30463d228cb51941c59a9124c90cbfd7b60510e2 | |
| parent | c84c73de91f2f6a201a07540d627448aa6304d33 (diff) | |
| parent | db568f042c9f8d72fe050204903afb6fd4beea04 (diff) | |
| download | perlweeklychallenge-club-c68da89f6f1840672d857f56360ea2bd89c80aaf.tar.gz perlweeklychallenge-club-c68da89f6f1840672d857f56360ea2bd89c80aaf.tar.bz2 perlweeklychallenge-club-c68da89f6f1840672d857f56360ea2bd89c80aaf.zip | |
Merge pull request #506 from andrezgz/challenge-020-fix
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. |
