Max Width
Start Timer
0:00:00
Given an array of words
and a max_width
parameter, write a function justify
to format the text such that each line has exactly max_width
characters. Pad extra spaces ā ā when necessary so that each line has exactly max_width
characters.
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, place excess spaces on the right-hand side of each line.
Note: You may assume that there is no word in words
that is longer than max_width
.
Example:
Input:
words = ["This", "is", "an", "example", "of", "text", "justification."]
max_width = 16
def justify(words, max_width): ->
[
"This is an",
"example of text",
"justification. "
]
Recommended questions for you
Personalized based on your user activity, skill level, and preferences.
.
.
.
.
.
.
.
.
.
Comments