aboutsummaryrefslogtreecommitdiff
path: root/challenge-101/paulo-custodio/python
diff options
context:
space:
mode:
authorPaulo Custodio <pauloscustodio@gmail.com>2021-03-09 20:01:18 +0000
committerPaulo Custodio <pauloscustodio@gmail.com>2021-03-09 20:01:18 +0000
commitc51f9bd979dbd79f20cb0abd543dc9b4df9f4e84 (patch)
tree9133aa3fc3d107c7b44de3905fc7b1d2ab307aaa /challenge-101/paulo-custodio/python
parentbfa8b8a3dda2ac37c22c7f4fc2867211f92f65e0 (diff)
downloadperlweeklychallenge-club-c51f9bd979dbd79f20cb0abd543dc9b4df9f4e84.tar.gz
perlweeklychallenge-club-c51f9bd979dbd79f20cb0abd543dc9b4df9f4e84.tar.bz2
perlweeklychallenge-club-c51f9bd979dbd79f20cb0abd543dc9b4df9f4e84.zip
Remove tabs
Diffstat (limited to 'challenge-101/paulo-custodio/python')
-rw-r--r--challenge-101/paulo-custodio/python/ch-1.py24
-rw-r--r--challenge-101/paulo-custodio/python/ch-2.py10
2 files changed, 17 insertions, 17 deletions
diff --git a/challenge-101/paulo-custodio/python/ch-1.py b/challenge-101/paulo-custodio/python/ch-1.py
index 57d08d0847..3f5fd5f79e 100644
--- a/challenge-101/paulo-custodio/python/ch-1.py
+++ b/challenge-101/paulo-custodio/python/ch-1.py
@@ -1,23 +1,23 @@
#!/usr/bin/env python
# Challenge 101
-#
+#
# TASK #1 > Pack a Spiral
# Submitted by: Stuart Little
-#
+#
# You are given an array @A of items (integers say, but they can be anything).
-#
-# Your task is to pack that array into an MxN matrix spirally counterclockwise,
+#
+# Your task is to pack that array into an MxN matrix spirally counterclockwise,
# as tightly as possible.
-#
-# 'Tightly' means the absolute value |M-N| of the difference has to be as small
+#
+# 'Tightly' means the absolute value |M-N| of the difference has to be as small
# as possible.
import sys
import math
def spiral(numbers):
-
+
# find max width of elements, convert to int
def max_width(numbers):
num_width = 1
@@ -46,7 +46,7 @@ def spiral(numbers):
# build spiral rectangle
num_width = max_width(numbers)
m, n = build_rect(numbers)
-
+
r, c = m, 1
i = 0
while (i < len(numbers)):
@@ -57,7 +57,7 @@ def spiral(numbers):
rect[r][c] = ("{:"+str(num_width+1)+"d}").format(numbers[i])
i += 1
c += 1
- c -= 1
+ c -= 1
r -= 1
# go North
while (r >= 1):
@@ -66,7 +66,7 @@ def spiral(numbers):
rect[r][c] = ("{:"+str(num_width+1)+"d}").format(numbers[i])
i += 1
r -= 1
- r += 1
+ r += 1
c -= 1
# go West
while (c >= 1):
@@ -75,7 +75,7 @@ def spiral(numbers):
rect[r][c] = ("{:"+str(num_width+1)+"d}").format(numbers[i])
i += 1
c -= 1
- c += 1
+ c += 1
r += 1
# go South
while (r <= m):
@@ -84,7 +84,7 @@ def spiral(numbers):
rect[r][c] = ("{:"+str(num_width+1)+"d}").format(numbers[i])
i += 1
r += 1
- r -= 1
+ r -= 1
c += 1
for r in range (1, m+1):
diff --git a/challenge-101/paulo-custodio/python/ch-2.py b/challenge-101/paulo-custodio/python/ch-2.py
index 0e510d9eca..b706fb9636 100644
--- a/challenge-101/paulo-custodio/python/ch-2.py
+++ b/challenge-101/paulo-custodio/python/ch-2.py
@@ -1,15 +1,15 @@
#! /usr/bin/env python
# Challenge 101
-#
+#
# TASK #2 > Origin-containing Triangle
# Submitted by: Stuart Little
-# You are given three points in the plane, as a list of six co-ordinates:
+# You are given three points in the plane, as a list of six co-ordinates:
# A=(x1,y1), B=(x2,y2) and C=(x3,y3).
-#
-# Write a script to find out if the triangle formed by the given three
+#
+# Write a script to find out if the triangle formed by the given three
# co-ordinates contain origin (0,0).
-#
+#
# Print 1 if found otherwise 0.
import sys