aboutsummaryrefslogtreecommitdiff
path: root/challenge-135/paulo-custodio/python
diff options
context:
space:
mode:
Diffstat (limited to 'challenge-135/paulo-custodio/python')
-rw-r--r--challenge-135/paulo-custodio/python/ch-1.py4
-rw-r--r--challenge-135/paulo-custodio/python/ch-2.py8
2 files changed, 6 insertions, 6 deletions
diff --git a/challenge-135/paulo-custodio/python/ch-1.py b/challenge-135/paulo-custodio/python/ch-1.py
index 389816b534..b310faccc3 100644
--- a/challenge-135/paulo-custodio/python/ch-1.py
+++ b/challenge-135/paulo-custodio/python/ch-1.py
@@ -3,9 +3,9 @@
# TASK #1 > Middle 3-digits
# Submitted by: Mohammad S Anwar
# You are given an integer.
-#
+#
# Write a script find out the middle 3-digits of the given integer, if possible otherwise throw sensible error.
-#
+#
# Example 1
# Input: $n = 1234567
# Output: 345
diff --git a/challenge-135/paulo-custodio/python/ch-2.py b/challenge-135/paulo-custodio/python/ch-2.py
index 9f1bb2594a..fe3641e471 100644
--- a/challenge-135/paulo-custodio/python/ch-2.py
+++ b/challenge-135/paulo-custodio/python/ch-2.py
@@ -3,12 +3,12 @@
# TASK #2 > Validate SEDOL
# Submitted by: Mohammad S Anwar
# You are given 7-characters alphanumeric SEDOL.
-#
-# Write a script to validate the given SEDOL. Print 1 if it is a valid SEDOL
+#
+# Write a script to validate the given SEDOL. Print 1 if it is a valid SEDOL
# otherwise 0.
-#
+#
# For more information about SEDOL, please checkout the wikipedia page.
-#
+#
# Example 1
# Input: $SEDOL = '2936921'
# Output: 1