aboutsummaryrefslogtreecommitdiff
path: root/challenge-100
diff options
context:
space:
mode:
authorMohammad S Anwar <Mohammad.Anwar@yahoo.com>2021-03-07 07:01:41 +0000
committerGitHub <noreply@github.com>2021-03-07 07:01:41 +0000
commita93b6ae2bca9e39ac76b4c5e2879b349940731b0 (patch)
tree5dcb6ba807159563e1fd082c81694a670479c29c /challenge-100
parentb36412240457bb8e41e5fdc7c912b084a3afd4df (diff)
parent6ba83654820bad00ba3c679bbe18764269dabe0f (diff)
downloadperlweeklychallenge-club-a93b6ae2bca9e39ac76b4c5e2879b349940731b0.tar.gz
perlweeklychallenge-club-a93b6ae2bca9e39ac76b4c5e2879b349940731b0.tar.bz2
perlweeklychallenge-club-a93b6ae2bca9e39ac76b4c5e2879b349940731b0.zip
Merge pull request #3663 from pauloscustodio/paulo-custodio
Paulo Custodio
Diffstat (limited to 'challenge-100')
-rw-r--r--challenge-100/paulo-custodio/ada/ch_1.adb2
-rw-r--r--challenge-100/paulo-custodio/ada/ch_2.adb2
-rw-r--r--challenge-100/paulo-custodio/awk/ch-1.awk2
-rw-r--r--challenge-100/paulo-custodio/awk/ch-2.awk2
-rw-r--r--challenge-100/paulo-custodio/basic/ch-2.bas2
-rw-r--r--challenge-100/paulo-custodio/c/ch-1.c2
-rw-r--r--challenge-100/paulo-custodio/c/ch-2.c2
-rw-r--r--challenge-100/paulo-custodio/cpp/ch-1.cpp2
-rw-r--r--challenge-100/paulo-custodio/cpp/ch-2.cpp2
-rw-r--r--challenge-100/paulo-custodio/forth/ch-1.fs2
-rw-r--r--challenge-100/paulo-custodio/forth/ch-2.fs2
-rw-r--r--challenge-100/paulo-custodio/lua/ch-2.lua2
-rw-r--r--challenge-100/paulo-custodio/perl/ch-1.pl2
-rw-r--r--challenge-100/paulo-custodio/perl/ch-2.pl2
-rw-r--r--challenge-100/paulo-custodio/python/ch-1.py2
-rw-r--r--challenge-100/paulo-custodio/python/ch-2.py2
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.