aboutsummaryrefslogtreecommitdiff
path: root/challenge-099
diff options
context:
space:
mode:
Diffstat (limited to 'challenge-099')
-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
18 files changed, 36 insertions, 0 deletions
diff --git a/challenge-099/paulo-custodio/ada/ch_1.adb b/challenge-099/paulo-custodio/ada/ch_1.adb
index 925660d9d7..fd79db2f4c 100644
--- a/challenge-099/paulo-custodio/ada/ch_1.adb
+++ b/challenge-099/paulo-custodio/ada/ch_1.adb
@@ -1,3 +1,5 @@
+-- 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 9fd9d54077..e05007fb0e 100644
--- a/challenge-099/paulo-custodio/ada/ch_2.adb
+++ b/challenge-099/paulo-custodio/ada/ch_2.adb
@@ -1,3 +1,5 @@
+-- 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 e090e3fe64..57a0b663f3 100644
--- a/challenge-099/paulo-custodio/awk/ch-1.awk
+++ b/challenge-099/paulo-custodio/awk/ch-1.awk
@@ -1,5 +1,7 @@
#!/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 8fd50fa366..abf6668f74 100644
--- a/challenge-099/paulo-custodio/awk/ch-2.awk
+++ b/challenge-099/paulo-custodio/awk/ch-2.awk
@@ -1,5 +1,7 @@
#!/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 255f3147ce..1cc64aee12 100644
--- a/challenge-099/paulo-custodio/basic/ch-1.bas
+++ b/challenge-099/paulo-custodio/basic/ch-1.bas
@@ -1,3 +1,5 @@
+' 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 b2733f8867..ac658b84b3 100644
--- a/challenge-099/paulo-custodio/basic/ch-2.bas
+++ b/challenge-099/paulo-custodio/basic/ch-2.bas
@@ -1,3 +1,5 @@
+' 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 a22c7d91e2..82c1b4edb7 100644
--- a/challenge-099/paulo-custodio/c/ch-1.c
+++ b/challenge-099/paulo-custodio/c/ch-1.c
@@ -1,4 +1,6 @@
/*
+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 5582d110a4..3b75674d56 100644
--- a/challenge-099/paulo-custodio/c/ch-2.c
+++ b/challenge-099/paulo-custodio/c/ch-2.c
@@ -1,4 +1,6 @@
/*
+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 5fe6d95de2..67687d4582 100644
--- a/challenge-099/paulo-custodio/cpp/ch-1.cpp
+++ b/challenge-099/paulo-custodio/cpp/ch-1.cpp
@@ -1,4 +1,6 @@
/*
+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 cf0cfbd04a..e553a5eaa2 100644
--- a/challenge-099/paulo-custodio/cpp/ch-2.cpp
+++ b/challenge-099/paulo-custodio/cpp/ch-2.cpp
@@ -1,4 +1,6 @@
/*
+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 adcb5f14d7..3dd302fad2 100644
--- a/challenge-099/paulo-custodio/forth/ch-1.fs
+++ b/challenge-099/paulo-custodio/forth/ch-1.fs
@@ -1,5 +1,7 @@
#! /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 7d1e47eead..26ff1a758d 100644
--- a/challenge-099/paulo-custodio/forth/ch-2.fs
+++ b/challenge-099/paulo-custodio/forth/ch-2.fs
@@ -1,5 +1,7 @@
#! /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 225beeb34d..989dd87715 100644
--- a/challenge-099/paulo-custodio/lua/ch-1.lua
+++ b/challenge-099/paulo-custodio/lua/ch-1.lua
@@ -1,6 +1,8 @@
#!/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 d74eb53626..9c52b32a2e 100644
--- a/challenge-099/paulo-custodio/lua/ch-2.lua
+++ b/challenge-099/paulo-custodio/lua/ch-2.lua
@@ -1,6 +1,8 @@
#!/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 effafe2108..71b3a7ea93 100644
--- a/challenge-099/paulo-custodio/perl/ch-1.pl
+++ b/challenge-099/paulo-custodio/perl/ch-1.pl
@@ -1,5 +1,7 @@
#!/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 d0a8c71867..d13a90524f 100644
--- a/challenge-099/paulo-custodio/perl/ch-2.pl
+++ b/challenge-099/paulo-custodio/perl/ch-2.pl
@@ -1,5 +1,7 @@
#!/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 60295131f4..930c9dc328 100644
--- a/challenge-099/paulo-custodio/python/ch-1.py
+++ b/challenge-099/paulo-custodio/python/ch-1.py
@@ -1,5 +1,7 @@
#!/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 e065b17674..e82e57f635 100644
--- a/challenge-099/paulo-custodio/python/ch-2.py
+++ b/challenge-099/paulo-custodio/python/ch-2.py
@@ -1,5 +1,7 @@
#!/usr/bin/env python
+# Challenge 099
+#
# TASK #2 > Unique Sub-sequence
# Submitted by : Mohammad S Anwar
# You are given two strings $S and $T.