Skip to content

Commit 161e5f3

Browse files
committedFeb 20, 2016
Update text-justification.py
1 parent a742da4 commit 161e5f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎Python/text-justification.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def addSpaces(i, spaceCnt, maxWidth, is_last):
4242
return 0
4343

4444
def connect(words, maxWidth, begin, end, length, is_last):
45-
s = []
45+
s = [] # The extra space O(k) is spent here.
4646
n = end - begin
4747
for i in xrange(n):
4848
s += words[begin + i],

0 commit comments

Comments
 (0)