Text Justification
Hard📝 Description
Arrange words in lines with maxWidth, adding extra spaces as needed
Input Format
List of words and integer maxWidth
Output Format
List of justified lines
Constraints
1 ≤ words.length ≤ 300
🔍 Sample Input
["This", "is", "an", "example", "of", "text", "justification."]
16
✅ Sample Output
["This is an","example of text","justification. "]
Code Editor
Please login to run and submit code.
Results
Suggested Solution
Shortcuts: Ctrl+Enter to submit, Ctrl+Shift+R to run