diff options
Diffstat (limited to 'challenge-099')
| -rw-r--r-- | challenge-099/paulo-custodio/ada/ch_1.adb | 2 | ||||
| -rw-r--r-- | challenge-099/paulo-custodio/ada/ch_2.adb | 2 | ||||
| -rw-r--r-- | challenge-099/paulo-custodio/awk/ch-1.awk | 2 | ||||
| -rw-r--r-- | challenge-099/paulo-custodio/awk/ch-2.awk | 2 | ||||
| -rw-r--r-- | challenge-099/paulo-custodio/basic/ch-1.bas | 2 | ||||
| -rw-r--r-- | challenge-099/paulo-custodio/basic/ch-2.bas | 2 | ||||
| -rw-r--r-- | challenge-099/paulo-custodio/forth/ch-1.fs | 2 | ||||
| -rw-r--r-- | challenge-099/paulo-custodio/forth/ch-2.fs | 2 | ||||
| -rw-r--r-- | challenge-099/paulo-custodio/perl/ch-1.pl | 2 | ||||
| -rw-r--r-- | challenge-099/paulo-custodio/perl/ch-2.pl | 2 | ||||
| -rw-r--r-- | challenge-099/paulo-custodio/python/ch-1.py | 2 | ||||
| -rw-r--r-- | challenge-099/paulo-custodio/python/ch-2.py | 2 |
12 files changed, 12 insertions, 12 deletions
diff --git a/challenge-099/paulo-custodio/ada/ch_1.adb b/challenge-099/paulo-custodio/ada/ch_1.adb index fd79db2f4c..2971db69ee 100644 --- a/challenge-099/paulo-custodio/ada/ch_1.adb +++ b/challenge-099/paulo-custodio/ada/ch_1.adb @@ -1,5 +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 e05007fb0e..aff10904a0 100644 --- a/challenge-099/paulo-custodio/ada/ch_2.adb +++ b/challenge-099/paulo-custodio/ada/ch_2.adb @@ -1,5 +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 57a0b663f3..8b65b0b4a5 100644 --- a/challenge-099/paulo-custodio/awk/ch-1.awk +++ b/challenge-099/paulo-custodio/awk/ch-1.awk @@ -1,7 +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 abf6668f74..a0d4b6de12 100644 --- a/challenge-099/paulo-custodio/awk/ch-2.awk +++ b/challenge-099/paulo-custodio/awk/ch-2.awk @@ -1,7 +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 1cc64aee12..35ffc94eb6 100644 --- a/challenge-099/paulo-custodio/basic/ch-1.bas +++ b/challenge-099/paulo-custodio/basic/ch-1.bas @@ -1,5 +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 ac658b84b3..68365a805d 100644 --- a/challenge-099/paulo-custodio/basic/ch-2.bas +++ b/challenge-099/paulo-custodio/basic/ch-2.bas @@ -1,5 +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/forth/ch-1.fs b/challenge-099/paulo-custodio/forth/ch-1.fs index 3dd302fad2..319f35f40c 100644 --- a/challenge-099/paulo-custodio/forth/ch-1.fs +++ b/challenge-099/paulo-custodio/forth/ch-1.fs @@ -1,7 +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 26ff1a758d..264b94dd1f 100644 --- a/challenge-099/paulo-custodio/forth/ch-2.fs +++ b/challenge-099/paulo-custodio/forth/ch-2.fs @@ -1,7 +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/perl/ch-1.pl b/challenge-099/paulo-custodio/perl/ch-1.pl index 71b3a7ea93..4ef87e2694 100644 --- a/challenge-099/paulo-custodio/perl/ch-1.pl +++ b/challenge-099/paulo-custodio/perl/ch-1.pl @@ -1,7 +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 d13a90524f..f876f9d1c0 100644 --- a/challenge-099/paulo-custodio/perl/ch-2.pl +++ b/challenge-099/paulo-custodio/perl/ch-2.pl @@ -1,7 +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 4516a3254f..930c9dc328 100644 --- a/challenge-099/paulo-custodio/python/ch-1.py +++ b/challenge-099/paulo-custodio/python/ch-1.py @@ -1,7 +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 e82e57f635..a77b3f83cc 100644 --- a/challenge-099/paulo-custodio/python/ch-2.py +++ b/challenge-099/paulo-custodio/python/ch-2.py @@ -1,7 +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. |
