(String[] args)
| 6 | |
| 7 | public class Question { |
| 8 | public static void main(String[] args) { |
| 9 | String[] array = {"apple", "banana", "carrot", "ele", "duck", "papel", "tarroc", "cudk", "eel", "lee"}; |
| 10 | System.out.println(AssortedMethods.stringArrayToString(array)); |
| 11 | Arrays.sort(array, new AnagramComparator()); |
| 12 | System.out.println(AssortedMethods.stringArrayToString(array)); |
| 13 | } |
| 14 | } |
nothing calls this directly
no test coverage detected