My goal is to convert this Arrays.sort(nums, j+1, nums.length) into a reverse sort. The only reverse sort information I can find doesn't seem to have the ability to sort a subarray.
And this gives me an error Arrays.sort(nums, j+1, nums.length, Collections.reverseOrder());