10 lines
248 B
JavaScript

/**
* https://leetcode.cn/problems/text-justification/description/?envType=study-plan-v2&envId=top-interview-150
* @param {string[]} words
* @param {number} maxWidth
* @return {string[]}
*/
const fullJustify = function (words, maxWidth) {
};