其他分享
首页 > 其他分享> > LeetCode-68-文本左右对齐

LeetCode-68-文本左右对齐

作者:互联网

68. 文本左右对齐

示例 1:

输入:
words = [“This”, “is”, “an”, “example”, “of”, “text”, “justification.”]
maxWidth = 16
输出:
[
“This is an”,
“example of text”,
"justification. "
]

示例 2:

输入:
words = [“What”,“must”,“be”,“acknowledgment”,“shall”,“be”]
maxWidth = 16
输出:
[
“What must be”,
"acknowledgment ",
"shall be "
]
解释: 注意最后一行的格式应为 "shall be " 而不是 “shall be”,
因为最后一行应为左对齐,而不是左右两端对齐。
第二行同样为左对齐,这是因为这行只包含一个单词。

在这里插入图片描述


来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/text-justification
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

标签:pre,maxWidth,int,空格,字符串,words,68,对齐,LeetCode
来源: https://blog.csdn.net/qq_44633470/article/details/120198779