(String[] args)
| 22 | } |
| 23 | |
| 24 | public static void main(String[] args) { |
| 25 | Solution solution = new Solution(); |
| 26 | int[] data = new int[]{0, 1, 1, 2, 3, 3, 3}; |
| 27 | int len = solution.removeDuplicates(data); |
| 28 | for (int i = 0; i < len; i++) { |
| 29 | System.out.print(data[i] + (i == len - 1 ? "" : ", ")); |
| 30 | } |
| 31 | } |
| 32 | } |
nothing calls this directly
no test coverage detected