aboutsummaryrefslogtreecommitdiff
path: root/challenge-130
diff options
context:
space:
mode:
authorPaulo Custodio <pauloscustodio@gmail.com>2021-12-02 18:12:00 +0000
committerPaulo Custodio <pauloscustodio@gmail.com>2021-12-02 18:12:00 +0000
commitbf990af024f1ea0279927e4c89b2146b86e15e3b (patch)
tree67d7c6fe11970c4596f33b757cc3bb53c9ac42f3 /challenge-130
parentf0c28790b49f781a131faa9837c37d5b6103c09f (diff)
downloadperlweeklychallenge-club-bf990af024f1ea0279927e4c89b2146b86e15e3b.tar.gz
perlweeklychallenge-club-bf990af024f1ea0279927e4c89b2146b86e15e3b.tar.bz2
perlweeklychallenge-club-bf990af024f1ea0279927e4c89b2146b86e15e3b.zip
Fix title comment
Diffstat (limited to 'challenge-130')
-rw-r--r--challenge-130/paulo-custodio/perl/ch-1.pl2
-rw-r--r--challenge-130/paulo-custodio/perl/ch-2.pl2
-rw-r--r--challenge-130/paulo-custodio/python/ch-1.py2
-rw-r--r--challenge-130/paulo-custodio/python/ch-2.py2
4 files changed, 8 insertions, 0 deletions
diff --git a/challenge-130/paulo-custodio/perl/ch-1.pl b/challenge-130/paulo-custodio/perl/ch-1.pl
index 8122ef8589..b9c88d549f 100644
--- a/challenge-130/paulo-custodio/perl/ch-1.pl
+++ b/challenge-130/paulo-custodio/perl/ch-1.pl
@@ -1,5 +1,7 @@
#!/usr/bin/env perl
+# Challenge 130
+#
# TASK #1 > Odd Number
# Submitted by: Mohammad S Anwar
# You are given an array of positive integers, such that all the
diff --git a/challenge-130/paulo-custodio/perl/ch-2.pl b/challenge-130/paulo-custodio/perl/ch-2.pl
index 90b55a7efa..aafef98730 100644
--- a/challenge-130/paulo-custodio/perl/ch-2.pl
+++ b/challenge-130/paulo-custodio/perl/ch-2.pl
@@ -1,5 +1,7 @@
#!/usr/bin/env perl
+# Challenge 130
+#
# TASK #2 > Binary Search Tree
# Submitted by: Mohammad S Anwar
# You are given a tree.
diff --git a/challenge-130/paulo-custodio/python/ch-1.py b/challenge-130/paulo-custodio/python/ch-1.py
index 9a1e347c28..77faf45c73 100644
--- a/challenge-130/paulo-custodio/python/ch-1.py
+++ b/challenge-130/paulo-custodio/python/ch-1.py
@@ -1,5 +1,7 @@
#!/usr/bin/env python3
+# Challenge 130
+#
# TASK #1 > Odd Number
# Submitted by: Mohammad S Anwar
# You are given an array of positive integers, such that all the
diff --git a/challenge-130/paulo-custodio/python/ch-2.py b/challenge-130/paulo-custodio/python/ch-2.py
index 6eb0944ce3..f231051467 100644
--- a/challenge-130/paulo-custodio/python/ch-2.py
+++ b/challenge-130/paulo-custodio/python/ch-2.py
@@ -1,5 +1,7 @@
#!/usr/bin/env python3
+# Challenge 130
+#
# TASK #2 > Binary Search Tree
# Submitted by: Mohammad S Anwar
# You are given a tree.