Write a method called descending that accepts an array of integers and rearranges the integers in the array to be in descending order using a PriorityQueue as a helper. For example, if the array passed stores [42, 9, 22, 17, −3, 81], after the call the array should store [−3, 9, 17, 22, 42, 81].
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.