(StringBuilder str, int count)
| 3 | public class Main { |
| 4 | static class Solution { |
| 5 | void addSpaces(StringBuilder str, int count) { |
| 6 | for (int i = 0; i < count; i++) |
| 7 | str.append(' '); |
| 8 | } |
| 9 | |
| 10 | public List<String> fullJustify(String[] words, int maxWidth) { |
| 11 | List<String> ans = new ArrayList<>(); |