(String[] args)
| 4 | public class CountingSortMain { |
| 5 | |
| 6 | public static void main(String[] args) { |
| 7 | System.out.println("Before Sorting : "); |
| 8 | int arr[]={1,4,7,3,4,5,6,3,4,8,6,4,4}; |
| 9 | System.out.println(Arrays.toString(arr)); |
| 10 | arr=countingSort(arr); |
| 11 | System.out.println("======================="); |
| 12 | System.out.println("After Sorting : "); |
| 13 | System.out.println(Arrays.toString(arr)); |
| 14 | } |
| 15 | |
| 16 | static int[] countingSort(int arr[]) |
| 17 | { |
nothing calls this directly
no test coverage detected