(String[] args)
| 99 | |
| 100 | |
| 101 | public static void main(String[] args) { |
| 102 | Solution solution = new Solution(); |
| 103 | System.out.println(solution.fullJustify(new String[]{"", ""}, 0)); |
| 104 | System.out.println(solution.fullJustify(new String[]{"a"}, 1)); |
| 105 | System.out.println(solution.fullJustify(new String[]{"This", "is", "an", "example", "of", "text", "justification."}, 16)); |
| 106 | } |
| 107 | } |
nothing calls this directly
no test coverage detected