68. Text Justification https://youtu.be/TzMl4Z7pVh8?si=nYIZZBc0f4565dnG class Solution: def fullJustify(self, words: List[str], maxWidth: int) -> List[str]: res = [] line, length = [], 0 i = 0 while i maxWidth: # 문장 길이를 초과함 # 새로운 단어 추가 하면, 문장 길이 초과하면 # 이 문장은 완료되었다고 보고(line complete) # 문장 내 공백 조절해야 함 extr..