forked from lilianweng/LeetcodePython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtext_justify.py
More file actions
63 lines (53 loc) · 3.27 KB
/
text_justify.py
File metadata and controls
63 lines (53 loc) · 3.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/usr/bin/env python
'''
Leetcode: Text Justification
Given an array of words and a length L, format the text such that each line has exactly L characters and is fully (left and right) justified. You should pack your words in a greedy approach; that is, pack as many words as you can in each line. Pad extra spaces ' ' when necessary so that each line has exactly L characters.
Extra spaces between words should be distributed as evenly as possible. If the number of spaces on a line do not divide evenly between words, the empty slots on the left will be assigned more spaces than the slots on the right.
For the last line of text, it should be left justified and no extra space is inserted between words.
For example,
words: ["This", "is", "an", "example", "of", "text", "justification."]
L: 16.
Return the formatted lines as:
[
"This is an",
"example of text",
"justification. "
]
Note: Each word is guaranteed not to exceed L in length.
Corner Cases: A line other than the last line might contain only one word. What should you do in this case? In this case, that line should be left-justified.
'''
from __future__ import division
import random
def justification(words, L):
lines = []
cur_words = []; cur_len = 0
for w in words:
if cur_len + 1 + len(w) > L:
# cannot contain current words
if len(cur_words) > 1:
space, leftover = divmod(L-cur_len, len(cur_words)-1)
space += 1
line = cur_words[0]
for cw in cur_words[1:]:
if leftover > 0:
line += ' '*(space+1) + cw
leftover -= 1
else:
line += ' '*space + cw
else:
line = cur_words[0]+' '*(L-cur_len)
lines.append(line)
cur_words = [w]
cur_len = len(w)
else:
cur_words.append(w)
cur_len += 1+len(w)
# last line
if cur_words:
line = ' '.join(cur_words) + ' '*(L-cur_len)
lines.append(line)
print '\n'.join(['"'+l+'"' for l in lines])
return lines
if __name__ == '__main__':
justification(["This", "is", "an", "example", "of", "text", "justification."], 16)
justification(['Supervised', 'learning', 'is', 'the', 'machine', 'learning', 'task', 'of', 'inferring', 'a', 'function', 'from', 'labeled', 'training', 'data.', 'The', 'training', 'data', 'consist', 'of', 'a', 'set', 'of', 'training', 'examples.', 'In', 'supervised', 'learning', 'each', 'example', 'is', 'a', 'pair', 'consisting', 'of', 'an', 'input', 'object', 'typically', 'a', 'vector', 'and', 'a', 'desired', 'output', 'value', 'also', 'called', 'the', 'supervisory', 'signal.', 'A', 'supervised', 'learning', 'algorithm', 'analyzes', 'the', 'training', 'data', 'and', 'produces', 'an', 'inferred', 'function', 'which', 'can', 'be', 'used', 'for', 'mapping', 'new', 'examples', 'An', 'optimal', 'scenario', 'will', 'allow', 'for', 'the', 'algorithm', 'to', 'correctly', 'determine', 'the', 'class', 'labels', 'for', 'unseen', 'instances.', 'This', 'requires', 'the', 'learning', 'algorithm', 'to', 'generalize', 'from', 'the', 'training', 'data', 'to', 'unseen', 'situations', 'in', 'a', 'reasonable', 'way.'], 100)