We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce3dd87 commit 352ba9eCopy full SHA for 352ba9e
src/main/java/g0401_0500/s0493_reverse_pairs/Solution.java
@@ -6,8 +6,6 @@
6
import java.util.Arrays;
7
8
public class Solution {
9
- // reference:
10
- // https://discuss.leetcode.com/topic/78933/very-short-and-clear-mergesort-bst-java-solutions
11
public int reversePairs(int[] nums) {
12
return mergeSort(nums, 0, nums.length - 1);
13
}
0 commit comments