(int nums[],int i,int j)
| 15 | } |
| 16 | |
| 17 | public static void swap(int nums[],int i,int j) |
| 18 | { |
| 19 | int temp=nums[i]; |
| 20 | nums[i]=nums[j]; |
| 21 | nums[j]=temp; |
| 22 | } |
| 23 | |
| 24 | public static void reverse(int nums[],int i,int j) |
| 25 | { |
no outgoing calls
no test coverage detected