diff options
| author | Paulo Custodio <pauloscustodio@gmail.com> | 2021-03-05 20:22:55 +0000 |
|---|---|---|
| committer | Paulo Custodio <pauloscustodio@gmail.com> | 2021-03-05 20:22:55 +0000 |
| commit | 6ba83654820bad00ba3c679bbe18764269dabe0f (patch) | |
| tree | c90816a0b5d51cdbc882ea104a31a2a3b070101e /challenge-100 | |
| parent | bc33c6d1243a9e5835034c6d51bf651068075c44 (diff) | |
| download | perlweeklychallenge-club-6ba83654820bad00ba3c679bbe18764269dabe0f.tar.gz perlweeklychallenge-club-6ba83654820bad00ba3c679bbe18764269dabe0f.tar.bz2 perlweeklychallenge-club-6ba83654820bad00ba3c679bbe18764269dabe0f.zip | |
Update comments
Diffstat (limited to 'challenge-100')
| -rw-r--r-- | challenge-100/paulo-custodio/ada/ch_1.adb | 2 | ||||
| -rw-r--r-- | challenge-100/paulo-custodio/ada/ch_2.adb | 2 | ||||
| -rw-r--r-- | challenge-100/paulo-custodio/awk/ch-1.awk | 2 | ||||
| -rw-r--r-- | challenge-100/paulo-custodio/awk/ch-2.awk | 2 | ||||
| -rw-r--r-- | challenge-100/paulo-custodio/basic/ch-2.bas | 2 | ||||
| -rw-r--r-- | challenge-100/paulo-custodio/c/ch-1.c | 2 | ||||
| -rw-r--r-- | challenge-100/paulo-custodio/c/ch-2.c | 2 | ||||
| -rw-r--r-- | challenge-100/paulo-custodio/cpp/ch-1.cpp | 2 | ||||
| -rw-r--r-- | challenge-100/paulo-custodio/cpp/ch-2.cpp | 2 | ||||
| -rw-r--r-- | challenge-100/paulo-custodio/forth/ch-1.fs | 2 | ||||
| -rw-r--r-- | challenge-100/paulo-custodio/forth/ch-2.fs | 2 | ||||
| -rw-r--r-- | challenge-100/paulo-custodio/lua/ch-2.lua | 2 | ||||
| -rw-r--r-- | challenge-100/paulo-custodio/perl/ch-1.pl | 2 | ||||
| -rw-r--r-- | challenge-100/paulo-custodio/perl/ch-2.pl | 2 | ||||
| -rw-r--r-- | challenge-100/paulo-custodio/python/ch-1.py | 2 | ||||
| -rw-r--r-- | challenge-100/paulo-custodio/python/ch-2.py | 2 |
16 files changed, 32 insertions, 0 deletions
diff --git a/challenge-100/paulo-custodio/ada/ch_1.adb b/challenge-100/paulo-custodio/ada/ch_1.adb index e5f362c639..c2bd973b79 100644 --- a/challenge-100/paulo-custodio/ada/ch_1.adb +++ b/challenge-100/paulo-custodio/ada/ch_1.adb @@ -1,3 +1,5 @@ +-- Challenge 100 +-- -- TASK #1 > Fun Time -- Submitted by: Mohammad S Anwar -- You are given a time (12 hour / 24 hour). diff --git a/challenge-100/paulo-custodio/ada/ch_2.adb b/challenge-100/paulo-custodio/ada/ch_2.adb index 36d95ef473..b54340b46f 100644 --- a/challenge-100/paulo-custodio/ada/ch_2.adb +++ b/challenge-100/paulo-custodio/ada/ch_2.adb @@ -1,3 +1,5 @@ +-- Challenge 100 +-- -- TASK #2 > Triangle Sum -- Submitted by: Mohammad S Anwar -- You are given triangle array. diff --git a/challenge-100/paulo-custodio/awk/ch-1.awk b/challenge-100/paulo-custodio/awk/ch-1.awk index 83c0caffe6..9f99dbf8d1 100644 --- a/challenge-100/paulo-custodio/awk/ch-1.awk +++ b/challenge-100/paulo-custodio/awk/ch-1.awk @@ -1,5 +1,7 @@ #!/usr/bin/gawk +# Challenge 100 +# # TASK #1 > Fun Time # Submitted by: Mohammad S Anwar # You are given a time (12 hour / 24 hour). diff --git a/challenge-100/paulo-custodio/awk/ch-2.awk b/challenge-100/paulo-custodio/awk/ch-2.awk index 77fac41676..e063082aca 100644 --- a/challenge-100/paulo-custodio/awk/ch-2.awk +++ b/challenge-100/paulo-custodio/awk/ch-2.awk @@ -1,5 +1,7 @@ #!/usr/bin/gawk +# Challenge 100 +# # TASK #2 > Triangle Sum # Submitted by: Mohammad S Anwar # You are given triangle array. diff --git a/challenge-100/paulo-custodio/basic/ch-2.bas b/challenge-100/paulo-custodio/basic/ch-2.bas index 6ba0800802..407b0f24ea 100644 --- a/challenge-100/paulo-custodio/basic/ch-2.bas +++ b/challenge-100/paulo-custodio/basic/ch-2.bas @@ -1,3 +1,5 @@ +' Challenge 100 +' ' TASK #2 > Triangle Sum ' Submitted by: Mohammad S Anwar ' You are given triangle array. diff --git a/challenge-100/paulo-custodio/c/ch-1.c b/challenge-100/paulo-custodio/c/ch-1.c index d0a33a1f36..9638b7d656 100644 --- a/challenge-100/paulo-custodio/c/ch-1.c +++ b/challenge-100/paulo-custodio/c/ch-1.c @@ -1,4 +1,6 @@ /* +Challenge 100 + TASK #1 > Fun Time Submitted by: Mohammad S Anwar You are given a time (12 hour / 24 hour). diff --git a/challenge-100/paulo-custodio/c/ch-2.c b/challenge-100/paulo-custodio/c/ch-2.c index 1d68e1d2d6..6a772d3a01 100644 --- a/challenge-100/paulo-custodio/c/ch-2.c +++ b/challenge-100/paulo-custodio/c/ch-2.c @@ -1,4 +1,6 @@ /* +Challenge 100 + TASK #2 > Triangle Sum Submitted by: Mohammad S Anwar You are given triangle array. diff --git a/challenge-100/paulo-custodio/cpp/ch-1.cpp b/challenge-100/paulo-custodio/cpp/ch-1.cpp index 0516a4bd31..115f577c53 100644 --- a/challenge-100/paulo-custodio/cpp/ch-1.cpp +++ b/challenge-100/paulo-custodio/cpp/ch-1.cpp @@ -1,4 +1,6 @@ /* +Challenge 100 + TASK #1 > Fun Time Submitted by: Mohammad S Anwar You are given a time (12 hour / 24 hour). diff --git a/challenge-100/paulo-custodio/cpp/ch-2.cpp b/challenge-100/paulo-custodio/cpp/ch-2.cpp index b672a5cffe..c94b0355a3 100644 --- a/challenge-100/paulo-custodio/cpp/ch-2.cpp +++ b/challenge-100/paulo-custodio/cpp/ch-2.cpp @@ -1,4 +1,6 @@ /* +Challenge 100 + TASK #2 > Triangle Sum Submitted by: Mohammad S Anwar You are given triangle array. diff --git a/challenge-100/paulo-custodio/forth/ch-1.fs b/challenge-100/paulo-custodio/forth/ch-1.fs index a4008e5be2..6289a61a34 100644 --- a/challenge-100/paulo-custodio/forth/ch-1.fs +++ b/challenge-100/paulo-custodio/forth/ch-1.fs @@ -1,5 +1,7 @@ #! /usr/bin/env gforth +\ Challenge 100 +\ \ TASK #1 > Fun Time \ Submitted by: Mohammad S Anwar \ You are given a time (12 hour / 24 hour). diff --git a/challenge-100/paulo-custodio/forth/ch-2.fs b/challenge-100/paulo-custodio/forth/ch-2.fs index 7592af483c..e792301d4e 100644 --- a/challenge-100/paulo-custodio/forth/ch-2.fs +++ b/challenge-100/paulo-custodio/forth/ch-2.fs @@ -1,5 +1,7 @@ #! /usr/bin/env gforth +\ Challenge 100 +\ \ TASK #2 > Triangle Sum \ Submitted by: Mohammad S Anwar \ You are given triangle array. diff --git a/challenge-100/paulo-custodio/lua/ch-2.lua b/challenge-100/paulo-custodio/lua/ch-2.lua index 9f917fe53a..2c73edb907 100644 --- a/challenge-100/paulo-custodio/lua/ch-2.lua +++ b/challenge-100/paulo-custodio/lua/ch-2.lua @@ -1,6 +1,8 @@ #!/usr/bin/env lua --[[ +Challenge 100 + TASK #2 > Triangle Sum Submitted by: Mohammad S Anwar You are given triangle array. diff --git a/challenge-100/paulo-custodio/perl/ch-1.pl b/challenge-100/paulo-custodio/perl/ch-1.pl index c45d44b567..baade5121c 100644 --- a/challenge-100/paulo-custodio/perl/ch-1.pl +++ b/challenge-100/paulo-custodio/perl/ch-1.pl @@ -1,5 +1,7 @@ #!/usr/bin/perl +# Challenge 100 +# # TASK #1 > Fun Time # Submitted by: Mohammad S Anwar # You are given a time (12 hour / 24 hour). diff --git a/challenge-100/paulo-custodio/perl/ch-2.pl b/challenge-100/paulo-custodio/perl/ch-2.pl index 7221ce2880..9f78a241ba 100644 --- a/challenge-100/paulo-custodio/perl/ch-2.pl +++ b/challenge-100/paulo-custodio/perl/ch-2.pl @@ -1,5 +1,7 @@ #!/usr/bin/perl +# Challenge 100 +# # TASK #2 > Triangle Sum # Submitted by: Mohammad S Anwar # You are given triangle array. diff --git a/challenge-100/paulo-custodio/python/ch-1.py b/challenge-100/paulo-custodio/python/ch-1.py index 818624d76b..7cabc2f1a7 100644 --- a/challenge-100/paulo-custodio/python/ch-1.py +++ b/challenge-100/paulo-custodio/python/ch-1.py @@ -1,5 +1,7 @@ #!/usr/bin/env python +# Challenge 100 +# # TASK #1 > Fun Time # Submitted by: Mohammad S Anwar # You are given a time (12 hour / 24 hour). diff --git a/challenge-100/paulo-custodio/python/ch-2.py b/challenge-100/paulo-custodio/python/ch-2.py index 9491b675e0..1f27d99c01 100644 --- a/challenge-100/paulo-custodio/python/ch-2.py +++ b/challenge-100/paulo-custodio/python/ch-2.py @@ -1,5 +1,7 @@ #!/usr/bin/env python +# Challenge 100 +# # TASK #2 > Triangle Sum # Submitted by: Mohammad S Anwar # You are given triangle array. |
