We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a742da4 commit 161e5f3Copy full SHA for 161e5f3
Python/text-justification.py
@@ -42,7 +42,7 @@ def addSpaces(i, spaceCnt, maxWidth, is_last):
42
return 0
43
44
def connect(words, maxWidth, begin, end, length, is_last):
45
- s = []
+ s = [] # The extra space O(k) is spent here.
46
n = end - begin
47
for i in xrange(n):
48
s += words[begin + i],
0 commit comments