🔥 0

Text Justification

Khó📝 Chuỗi (Strings) 5000ms 256MB

Text Justification

Đề bài

Căn đều văn bản với maxWidth.

Ví dụ

Ví dụ 1:

Input: ["This","is","an","example","of","text","justification."], 16
Output: ["This    is    an","example  of text","justification.  "]

Ràng buộc

  • Dữ liệu đầu vào luôn hợp lệ
00:00
14
Case 1
Input = ["This","is","an","example","of","text","justification."]\n16
Output = ["This is an","example of text","justification. "]
JavaScript
UTF-8
00:00
Ln 3