diff options
| -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. |
