From bceb7d567c6ce2a10e6218715b23c93ee716a54e Mon Sep 17 00:00:00 2001 From: Shreya7tripathy Date: Sat, 2 Nov 2024 21:16:56 +0530 Subject: [PATCH] updated description --- java/Arrays/3.Hard/Reverse pairs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/Arrays/3.Hard/Reverse pairs.md b/java/Arrays/3.Hard/Reverse pairs.md index fcdc336ae..828d5c762 100644 --- a/java/Arrays/3.Hard/Reverse pairs.md +++ b/java/Arrays/3.Hard/Reverse pairs.md @@ -3,7 +3,7 @@ id: reverse-pairs title: Count Reverse Pairs sidebar_label: Count Reverse Pairs sidebar_position: 1 -description: Count the number of reverse pairs in an array where i < j and arr[i] > 2 * arr[j]. +description: Count the number of reverse pairs in an array where i is less than j and the element at index i is greater than twice the element at index j. tags: [Merge Sort, Array] ---