aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--challenge-099/paulo-custodio/ada/ch_1.adb2
-rw-r--r--challenge-099/paulo-custodio/ada/ch_2.adb2
-rw-r--r--challenge-099/paulo-custodio/awk/ch-1.awk2
-rw-r--r--challenge-099/paulo-custodio/awk/ch-2.awk2
-rw-r--r--challenge-099/paulo-custodio/basic/ch-1.bas2
-rw-r--r--challenge-099/paulo-custodio/basic/ch-2.bas2
-rw-r--r--challenge-099/paulo-custodio/c/ch-1.c2
-rw-r--r--challenge-099/paulo-custodio/c/ch-2.c2
-rw-r--r--challenge-099/paulo-custodio/cpp/ch-1.cpp2
-rw-r--r--challenge-099/paulo-custodio/cpp/ch-2.cpp2
-rw-r--r--challenge-099/paulo-custodio/forth/ch-1.fs2
-rw-r--r--challenge-099/paulo-custodio/forth/ch-2.fs2
-rw-r--r--challenge-099/paulo-custodio/lua/ch-1.lua2
-rw-r--r--challenge-099/paulo-custodio/lua/ch-2.lua2
-rw-r--r--challenge-099/paulo-custodio/perl/ch-1.pl2
-rw-r--r--challenge-099/paulo-custodio/perl/ch-2.pl2
-rw-r--r--challenge-099/paulo-custodio/python/ch-1.py2
-rw-r--r--challenge-099/paulo-custodio/python/ch-2.py2
-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/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/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
30 files changed, 0 insertions, 60 deletions
diff --git a/challenge-099/paulo-custodio/ada/ch_1.adb b/challenge-099/paulo-custodio/ada/ch_1.adb
index fd79db2f4c..925660d9d7 100644
--- a/challenge-099/paulo-custodio/ada/ch_1.adb
+++ b/challenge-099/paulo-custodio/ada/ch_1.adb
@@ -1,5 +1,3 @@
--- Challenge 099
---
-- TASK #1 › Pattern Match
-- Submitted by: Mohammad S Anwar
-- You are given a string $S and a pattern $P.
diff --git a/challenge-099/paulo-custodio/ada/ch_2.adb b/challenge-099/paulo-custodio/ada/ch_2.adb
index e05007fb0e..9fd9d54077 100644
--- a/challenge-099/paulo-custodio/ada/ch_2.adb
+++ b/challenge-099/paulo-custodio/ada/ch_2.adb
@@ -1,5 +1,3 @@
--- Challenge 099
---
-- TASK #2 › Unique Sub-sequence
-- Submitted by : Mohammad S Anwar
-- You are given two strings $S and $T.
diff --git a/challenge-099/paulo-custodio/awk/ch-1.awk b/challenge-099/paulo-custodio/awk/ch-1.awk
index 57a0b663f3..e090e3fe64 100644
--- a/challenge-099/paulo-custodio/awk/ch-1.awk
+++ b/challenge-099/paulo-custodio/awk/ch-1.awk
@@ -1,7 +1,5 @@
#!/usr/bin/gawk
-# Challenge 099
-#
# TASK #1 > Pattern Match
# Submitted by: Mohammad S Anwar
# You are given a string $S and a pattern $P.
diff --git a/challenge-099/paulo-custodio/awk/ch-2.awk b/challenge-099/paulo-custodio/awk/ch-2.awk
index abf6668f74..8fd50fa366 100644
--- a/challenge-099/paulo-custodio/awk/ch-2.awk
+++ b/challenge-099/paulo-custodio/awk/ch-2.awk
@@ -1,7 +1,5 @@
#!/usr/bin/gawk
-# Challenge 099
-#
# TASK #2 > Unique Subsequence
# Submitted by: Mohammad S Anwar
# You are given two strings $S and $T.
diff --git a/challenge-099/paulo-custodio/basic/ch-1.bas b/challenge-099/paulo-custodio/basic/ch-1.bas
index 1cc64aee12..255f3147ce 100644
--- a/challenge-099/paulo-custodio/basic/ch-1.bas
+++ b/challenge-099/paulo-custodio/basic/ch-1.bas
@@ -1,5 +1,3 @@
-' Challenge 099
-'
' TASK #1 › Pattern Match
' Submitted by: Mohammad S Anwar
' You are given a string $S and a pattern $P.
diff --git a/challenge-099/paulo-custodio/basic/ch-2.bas b/challenge-099/paulo-custodio/basic/ch-2.bas
index ac658b84b3..b2733f8867 100644
--- a/challenge-099/paulo-custodio/basic/ch-2.bas
+++ b/challenge-099/paulo-custodio/basic/ch-2.bas
@@ -1,5 +1,3 @@
-' Challenge 099
-'
' TASK #2 › Unique Sub-sequence
' Submitted by : Mohammad S Anwar
' You are given two strings $S and $T.
diff --git a/challenge-099/paulo-custodio/c/ch-1.c b/challenge-099/paulo-custodio/c/ch-1.c
index 82c1b4edb7..a22c7d91e2 100644
--- a/challenge-099/paulo-custodio/c/ch-1.c
+++ b/challenge-099/paulo-custodio/c/ch-1.c
@@ -1,6 +1,4 @@
/*
-Challenge 099
-
TASK #1 › Pattern Match
Submitted by: Mohammad S Anwar
You are given a string $S and a pattern $P.
diff --git a/challenge-099/paulo-custodio/c/ch-2.c b/challenge-099/paulo-custodio/c/ch-2.c
index 3b75674d56..5582d110a4 100644
--- a/challenge-099/paulo-custodio/c/ch-2.c
+++ b/challenge-099/paulo-custodio/c/ch-2.c
@@ -1,6 +1,4 @@
/*
-Challenge 099
-
TASK #2 › Unique Sub-sequence
Submitted by : Mohammad S Anwar
You are given two strings $S and $T.
diff --git a/challenge-099/paulo-custodio/cpp/ch-1.cpp b/challenge-099/paulo-custodio/cpp/ch-1.cpp
index 67687d4582..5fe6d95de2 100644
--- a/challenge-099/paulo-custodio/cpp/ch-1.cpp
+++ b/challenge-099/paulo-custodio/cpp/ch-1.cpp
@@ -1,6 +1,4 @@
/*
-Challenge 099
-
TASK #1 › Pattern Match
Submitted by: Mohammad S Anwar
You are given a string $S and a pattern $P.
diff --git a/challenge-099/paulo-custodio/cpp/ch-2.cpp b/challenge-099/paulo-custodio/cpp/ch-2.cpp
index e553a5eaa2..cf0cfbd04a 100644
--- a/challenge-099/paulo-custodio/cpp/ch-2.cpp
+++ b/challenge-099/paulo-custodio/cpp/ch-2.cpp
@@ -1,6 +1,4 @@
/*
-Challenge 099
-
TASK #2 › Unique Sub-sequence
Submitted by : Mohammad S Anwar
You are given two strings $S and $T.
diff --git a/challenge-099/paulo-custodio/forth/ch-1.fs b/challenge-099/paulo-custodio/forth/ch-1.fs
index 3dd302fad2..adcb5f14d7 100644
--- a/challenge-099/paulo-custodio/forth/ch-1.fs
+++ b/challenge-099/paulo-custodio/forth/ch-1.fs
@@ -1,7 +1,5 @@
#! /usr/bin/env gforth
-\ Challenge 099
-\
\ TASK #1 › Pattern Match
\ Submitted by: Mohammad S Anwar
\ You are given a string $S and a pattern $P.
diff --git a/challenge-099/paulo-custodio/forth/ch-2.fs b/challenge-099/paulo-custodio/forth/ch-2.fs
index 26ff1a758d..7d1e47eead 100644
--- a/challenge-099/paulo-custodio/forth/ch-2.fs
+++ b/challenge-099/paulo-custodio/forth/ch-2.fs
@@ -1,7 +1,5 @@
#! /usr/bin/env gforth
-\ Challenge 099
-\
\ TASK #2 › Unique Sub-sequence
\ Submitted by : Mohammad S Anwar
\ You are given two strings $S and $T.
diff --git a/challenge-099/paulo-custodio/lua/ch-1.lua b/challenge-099/paulo-custodio/lua/ch-1.lua
index 989dd87715..225beeb34d 100644
--- a/challenge-099/paulo-custodio/lua/ch-1.lua
+++ b/challenge-099/paulo-custodio/lua/ch-1.lua
@@ -1,8 +1,6 @@
#!/usr/bin/env lua
--[[
-Challenge 099
-
TASK #1 › Pattern Match
Submitted by: Mohammad S Anwar
You are given a string $S and a pattern $P.
diff --git a/challenge-099/paulo-custodio/lua/ch-2.lua b/challenge-099/paulo-custodio/lua/ch-2.lua
index 9c52b32a2e..d74eb53626 100644
--- a/challenge-099/paulo-custodio/lua/ch-2.lua
+++ b/challenge-099/paulo-custodio/lua/ch-2.lua
@@ -1,8 +1,6 @@
#!/usr/bin/env lua
--[[
-Challenge 099
-
TASK #2 › Unique Sub-sequence
Submitted by : Mohammad S Anwar
You are given two strings $S and $T.
diff --git a/challenge-099/paulo-custodio/perl/ch-1.pl b/challenge-099/paulo-custodio/perl/ch-1.pl
index 71b3a7ea93..effafe2108 100644
--- a/challenge-099/paulo-custodio/perl/ch-1.pl
+++ b/challenge-099/paulo-custodio/perl/ch-1.pl
@@ -1,7 +1,5 @@
#!/usr/bin/perl
-# Challenge 099
-#
# TASK #1 › Pattern Match
# Submitted by: Mohammad S Anwar
# You are given a string $S and a pattern $P.
diff --git a/challenge-099/paulo-custodio/perl/ch-2.pl b/challenge-099/paulo-custodio/perl/ch-2.pl
index d13a90524f..d0a8c71867 100644
--- a/challenge-099/paulo-custodio/perl/ch-2.pl
+++ b/challenge-099/paulo-custodio/perl/ch-2.pl
@@ -1,7 +1,5 @@
#!/usr/bin/perl
-# Challenge 099
-#
# TASK #2 › Unique Subsequence
# Submitted by: Mohammad S Anwar
# You are given two strings $S and $T.
diff --git a/challenge-099/paulo-custodio/python/ch-1.py b/challenge-099/paulo-custodio/python/ch-1.py
index 930c9dc328..60295131f4 100644
--- a/challenge-099/paulo-custodio/python/ch-1.py
+++ b/challenge-099/paulo-custodio/python/ch-1.py
@@ -1,7 +1,5 @@
#!/usr/bin/env python
-# Challenge 099
-#
# TASK #1 > Pattern Match
# Submitted by: Mohammad S Anwar
# You are given a string $S and a pattern $P.
diff --git a/challenge-099/paulo-custodio/python/ch-2.py b/challenge-099/paulo-custodio/python/ch-2.py
index e82e57f635..e065b17674 100644
--- a/challenge-099/paulo-custodio/python/ch-2.py
+++ b/challenge-099/paulo-custodio/python/ch-2.py
@@ -1,7 +1,5 @@
#!/usr/bin/env python
-# Challenge 099
-#
# TASK #2 > Unique Sub-sequence
# Submitted by : Mohammad S Anwar
# You are given two strings $S and $T.
diff --git a/challenge-100/paulo-custodio/awk/ch-1.awk b/challenge-100/paulo-custodio/awk/ch-1.awk
index 07cba14123..03d750b366 100644
--- a/challenge-100/paulo-custodio/awk/ch-1.awk
+++ b/challenge-100/paulo-custodio/awk/ch-1.awk
@@ -1,7 +1,5 @@
#!/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 aefd2cf858..d315475853 100644
--- a/challenge-100/paulo-custodio/awk/ch-2.awk
+++ b/challenge-100/paulo-custodio/awk/ch-2.awk
@@ -1,7 +1,5 @@
#!/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 9638b7d656..d0a33a1f36 100644
--- a/challenge-100/paulo-custodio/c/ch-1.c
+++ b/challenge-100/paulo-custodio/c/ch-1.c
@@ -1,6 +1,4 @@
/*
-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 6a772d3a01..1d68e1d2d6 100644
--- a/challenge-100/paulo-custodio/c/ch-2.c
+++ b/challenge-100/paulo-custodio/c/ch-2.c
@@ -1,6 +1,4 @@
/*
-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 9f4bcbd5e5..389d36f9c9 100644
--- a/challenge-100/paulo-custodio/cpp/ch-1.cpp
+++ b/challenge-100/paulo-custodio/cpp/ch-1.cpp
@@ -1,6 +1,4 @@
/*
-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 c94b0355a3..b672a5cffe 100644
--- a/challenge-100/paulo-custodio/cpp/ch-2.cpp
+++ b/challenge-100/paulo-custodio/cpp/ch-2.cpp
@@ -1,6 +1,4 @@
/*
-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 fe0e8f1e76..192b0dc2a5 100644
--- a/challenge-100/paulo-custodio/forth/ch-1.fs
+++ b/challenge-100/paulo-custodio/forth/ch-1.fs
@@ -1,7 +1,5 @@
#! /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 54939601a9..35156151a7 100644
--- a/challenge-100/paulo-custodio/forth/ch-2.fs
+++ b/challenge-100/paulo-custodio/forth/ch-2.fs
@@ -1,7 +1,5 @@
#! /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 cb8bd9c9aa..58ffb22647 100644
--- a/challenge-100/paulo-custodio/perl/ch-1.pl
+++ b/challenge-100/paulo-custodio/perl/ch-1.pl
@@ -1,7 +1,5 @@
#!/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 2264dcae93..a75afbffc8 100644
--- a/challenge-100/paulo-custodio/perl/ch-2.pl
+++ b/challenge-100/paulo-custodio/perl/ch-2.pl
@@ -1,7 +1,5 @@
#!/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 12fad2210b..863b39f2ba 100644
--- a/challenge-100/paulo-custodio/python/ch-1.py
+++ b/challenge-100/paulo-custodio/python/ch-1.py
@@ -1,7 +1,5 @@
#!/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 44a2c9f077..d75c2540c9 100644
--- a/challenge-100/paulo-custodio/python/ch-2.py
+++ b/challenge-100/paulo-custodio/python/ch-2.py
@@ -1,7 +1,5 @@
#!/usr/bin/env python
-# Challenge 100
-#
# TASK #2 > Triangle Sum
# Submitted by: Mohammad S Anwar
# You are given triangle array.