diff options
| author | Paulo Custodio <pauloscustodio@gmail.com> | 2021-12-02 18:12:00 +0000 |
|---|---|---|
| committer | Paulo Custodio <pauloscustodio@gmail.com> | 2021-12-02 18:12:00 +0000 |
| commit | bf990af024f1ea0279927e4c89b2146b86e15e3b (patch) | |
| tree | 67d7c6fe11970c4596f33b757cc3bb53c9ac42f3 /challenge-123 | |
| parent | f0c28790b49f781a131faa9837c37d5b6103c09f (diff) | |
| download | perlweeklychallenge-club-bf990af024f1ea0279927e4c89b2146b86e15e3b.tar.gz perlweeklychallenge-club-bf990af024f1ea0279927e4c89b2146b86e15e3b.tar.bz2 perlweeklychallenge-club-bf990af024f1ea0279927e4c89b2146b86e15e3b.zip | |
Fix title comment
Diffstat (limited to 'challenge-123')
| -rw-r--r-- | challenge-123/paulo-custodio/awk/ch-1.awk | 2 | ||||
| -rw-r--r-- | challenge-123/paulo-custodio/basic/ch-1.bas | 2 | ||||
| -rw-r--r-- | challenge-123/paulo-custodio/bc/ch-1.bc | 2 | ||||
| -rw-r--r-- | challenge-123/paulo-custodio/c/ch-1.c | 2 | ||||
| -rw-r--r-- | challenge-123/paulo-custodio/cpp/ch-1.cpp | 2 | ||||
| -rw-r--r-- | challenge-123/paulo-custodio/forth/ch-1.fs | 2 | ||||
| -rw-r--r-- | challenge-123/paulo-custodio/lua/ch-1.lua | 2 | ||||
| -rw-r--r-- | challenge-123/paulo-custodio/perl/ch-1.pl | 2 | ||||
| -rw-r--r-- | challenge-123/paulo-custodio/perl/ch-2.pl | 2 | ||||
| -rw-r--r-- | challenge-123/paulo-custodio/python/ch-1.py | 2 | ||||
| -rw-r--r-- | challenge-123/paulo-custodio/python/ch-2.py | 2 |
11 files changed, 21 insertions, 1 deletions
diff --git a/challenge-123/paulo-custodio/awk/ch-1.awk b/challenge-123/paulo-custodio/awk/ch-1.awk index 78dffcaa09..243dd4863a 100644 --- a/challenge-123/paulo-custodio/awk/ch-1.awk +++ b/challenge-123/paulo-custodio/awk/ch-1.awk @@ -1,5 +1,7 @@ #!/usr/bin/gawk +# Challenge 123 +# # TASK #1 > Ugly Numbers # Submitted by: Mohammad S Anwar # You are given an integer $n >= 1. diff --git a/challenge-123/paulo-custodio/basic/ch-1.bas b/challenge-123/paulo-custodio/basic/ch-1.bas index fbd74db6fa..3a3a09653f 100644 --- a/challenge-123/paulo-custodio/basic/ch-1.bas +++ b/challenge-123/paulo-custodio/basic/ch-1.bas @@ -1,4 +1,4 @@ -' Challenge 003 +' Challenge 123 ' ' TASK #1 > Ugly Numbers ' Submitted by: Mohammad S Anwar diff --git a/challenge-123/paulo-custodio/bc/ch-1.bc b/challenge-123/paulo-custodio/bc/ch-1.bc index 3199ef0684..7cb5dc2c92 100644 --- a/challenge-123/paulo-custodio/bc/ch-1.bc +++ b/challenge-123/paulo-custodio/bc/ch-1.bc @@ -1,6 +1,8 @@ #!/usr/bin/bc -ql /* +Challenge 123 + TASK #1 > Ugly Numbers Submitted by: Mohammad S Anwar You are given an integer $n >= 1. diff --git a/challenge-123/paulo-custodio/c/ch-1.c b/challenge-123/paulo-custodio/c/ch-1.c index f814da939c..bb678cb28d 100644 --- a/challenge-123/paulo-custodio/c/ch-1.c +++ b/challenge-123/paulo-custodio/c/ch-1.c @@ -1,4 +1,6 @@ /* +Challenge 123 + TASK #1 > Ugly Numbers Submitted by: Mohammad S Anwar You are given an integer $n >= 1. diff --git a/challenge-123/paulo-custodio/cpp/ch-1.cpp b/challenge-123/paulo-custodio/cpp/ch-1.cpp index 402443af57..a95f6e39ef 100644 --- a/challenge-123/paulo-custodio/cpp/ch-1.cpp +++ b/challenge-123/paulo-custodio/cpp/ch-1.cpp @@ -1,4 +1,6 @@ /* +Challenge 123 + TASK #1 > Ugly Numbers Submitted by: Mohammad S Anwar You are given an integer $n >= 1. diff --git a/challenge-123/paulo-custodio/forth/ch-1.fs b/challenge-123/paulo-custodio/forth/ch-1.fs index b18ed9e892..81b4ac5387 100644 --- a/challenge-123/paulo-custodio/forth/ch-1.fs +++ b/challenge-123/paulo-custodio/forth/ch-1.fs @@ -1,5 +1,7 @@ #! /usr/bin/env gforth +\ Challenge 123 +\ \ TASK #1 > Ugly Numbers \ Submitted by: Mohammad S Anwar \ You are given an integer $n >= 1. diff --git a/challenge-123/paulo-custodio/lua/ch-1.lua b/challenge-123/paulo-custodio/lua/ch-1.lua index b491dbf71a..bd1757fc02 100644 --- a/challenge-123/paulo-custodio/lua/ch-1.lua +++ b/challenge-123/paulo-custodio/lua/ch-1.lua @@ -1,6 +1,8 @@ #!/usr/bin/env lua --[[ +Challenge 123 + TASK #1 > Ugly Numbers Submitted by: Mohammad S Anwar You are given an integer $n >= 1. diff --git a/challenge-123/paulo-custodio/perl/ch-1.pl b/challenge-123/paulo-custodio/perl/ch-1.pl index 3e4dd62d68..8f6ac4cec0 100644 --- a/challenge-123/paulo-custodio/perl/ch-1.pl +++ b/challenge-123/paulo-custodio/perl/ch-1.pl @@ -1,5 +1,7 @@ #!/usr/bin/env perl +# Challenge 123 +# # TASK #1 > Ugly Numbers # Submitted by: Mohammad S Anwar # You are given an integer $n >= 1. diff --git a/challenge-123/paulo-custodio/perl/ch-2.pl b/challenge-123/paulo-custodio/perl/ch-2.pl index d3de33c77f..870227b9dd 100644 --- a/challenge-123/paulo-custodio/perl/ch-2.pl +++ b/challenge-123/paulo-custodio/perl/ch-2.pl @@ -1,5 +1,7 @@ #!/usr/bin/env perl +# Challenge 123 +# # TASK #2 > Square Points # Submitted by: Mohammad S Anwar # You are given coordinates of four points i.e. diff --git a/challenge-123/paulo-custodio/python/ch-1.py b/challenge-123/paulo-custodio/python/ch-1.py index f736c76e1a..0ac3601a0b 100644 --- a/challenge-123/paulo-custodio/python/ch-1.py +++ b/challenge-123/paulo-custodio/python/ch-1.py @@ -1,5 +1,7 @@ #!/usr/bin/env python +# Challenge 123 +# # TASK #1 > Ugly Numbers # Submitted by: Mohammad S Anwar # You are given an integer $n >= 1. diff --git a/challenge-123/paulo-custodio/python/ch-2.py b/challenge-123/paulo-custodio/python/ch-2.py index 0d4ef50456..bed907ab8f 100644 --- a/challenge-123/paulo-custodio/python/ch-2.py +++ b/challenge-123/paulo-custodio/python/ch-2.py @@ -1,5 +1,7 @@ #!/usr/bin/env python3 +# Challenge 123 +# # TASK #2 > Square Points # Submitted by: Mohammad S Anwar # You are given coordinates of four points i.e. |
