diff options
Diffstat (limited to 'challenge-100')
| -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/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/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 |
12 files changed, 24 insertions, 0 deletions
diff --git a/challenge-100/paulo-custodio/awk/ch-1.awk b/challenge-100/paulo-custodio/awk/ch-1.awk index 03d750b366..07cba14123 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 d315475853..aefd2cf858 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/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 389d36f9c9..9f4bcbd5e5 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 192b0dc2a5..fe0e8f1e76 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 35156151a7..54939601a9 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/perl/ch-1.pl b/challenge-100/paulo-custodio/perl/ch-1.pl index 58ffb22647..cb8bd9c9aa 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 a75afbffc8..2264dcae93 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 863b39f2ba..12fad2210b 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 d75c2540c9..44a2c9f077 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. |
