You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"shall be "
45
+
"What must be",
46
+
"acknowledgment ",
47
+
"shall be "
48
48
]
49
-
<strong>解释: </strong>注意最后一行的格式应为 "shall be " 而不是 "shall be",
49
+
<strong>解释: </strong>注意最后一行的格式应为 "shall be " 而不是 "shall be",
50
50
因为最后一行应为左对齐,而不是左右两端对齐。
51
51
第二行同样为左对齐,这是因为这行只包含一个单词。
52
52
</pre>
53
53
54
54
<p><strong>示例 3:</strong></p>
55
55
56
-
<pre><strong>输入:</strong>
57
-
words = ["Science","is","what","we","understand","well","enough","to","explain",
Copy file name to clipboardexpand all lines: solution/0000-0099/0068.Text Justification/README_EN.md
+83-18
Original file line number
Diff line number
Diff line change
@@ -4,20 +4,20 @@
4
4
5
5
## Description
6
6
7
-
<p>Given an array of words and a width <em>maxWidth</em>, format the text such that each line has exactly <em>maxWidth</em> characters and is fully (left and right) justified.</p>
7
+
<p>Given an array of strings <code>words</code> and a width <code>maxWidth</code>, format the text such that each line has exactly <code>maxWidth</code> characters and is fully (left and right) justified.</p>
8
8
9
-
<p>You should pack your words in a greedy approach; that is, pack as many words as you can in each line. Pad extra spaces <code>''</code> when necessary so that each line has exactly <em>maxWidth</em> characters.</p>
9
+
<p>You should pack your words in a greedy approach; that is, pack as many words as you can in each line. Pad extra spaces <code>''</code> when necessary so that each line has exactly <code>maxWidth</code> characters.</p>
10
10
11
-
<p>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.</p>
11
+
<p>Extra spaces between words should be distributed as evenly as possible. If the number of spaces on a line does not divide evenly between words, the empty slots on the left will be assigned more spaces than the slots on the right.</p>
12
12
13
-
<p>For the last line of text, it should be leftjustified and no <strong>extra</strong> space is inserted between words.</p>
13
+
<p>For the last line of text, it should be left-justified and no extra space is inserted between words.</p>
14
14
15
15
<p><strong>Note:</strong></p>
16
16
17
17
<ul>
18
-
<li>A word is defined as a character sequence consisting of non-space characters only.</li>
19
-
<li>Each word's length is guaranteed to be greater than 0 and not exceed <em>maxWidth</em>.</li>
20
-
<li>The input array <code>words</code> contains at least one word.</li>
18
+
<li>A word is defined as a character sequence consistingof non-space characters only.</li>
19
+
<li>Each word's length isguaranteed to be greater than 0 and not exceed maxWidth.</li>
20
+
<li>The input array <code>words</code>contains at least one word.</li>
0 commit comments