aboutsummaryrefslogtreecommitdiff
path: root/challenge-267/eric-cheung/python/ch-2.py
diff options
context:
space:
mode:
Diffstat (limited to 'challenge-267/eric-cheung/python/ch-2.py')
-rwxr-xr-xchallenge-267/eric-cheung/python/ch-2.py29
1 files changed, 29 insertions, 0 deletions
diff --git a/challenge-267/eric-cheung/python/ch-2.py b/challenge-267/eric-cheung/python/ch-2.py
new file mode 100755
index 0000000000..813851dabb
--- /dev/null
+++ b/challenge-267/eric-cheung/python/ch-2.py
@@ -0,0 +1,29 @@
+
+## Example 1
+## strInput = "abcdefghijklmnopqrstuvwxyz"
+## arrCharWidth = [10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10]
+
+## Example 2
+strInput = "bbbcccdddaaa"
+arrCharWidth = [4, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10]
+
+
+nMaxUnitPerLine = 100
+
+arrLineOutput = []
+nLineUnitCount = 0
+strLineAppend = ""
+
+for charLoop in strInput:
+ nIndx = ord(charLoop) - ord("a")
+ if nLineUnitCount + arrCharWidth[nIndx] > nMaxUnitPerLine:
+ arrLineOutput.append(strLineAppend)
+ nLineUnitCount = 0
+ strLineAppend = ""
+
+ strLineAppend = strLineAppend + charLoop
+ nLineUnitCount = nLineUnitCount + arrCharWidth[nIndx]
+
+arrLineOutput.append(strLineAppend)
+
+print ([len(arrLineOutput), nLineUnitCount])