diff --git a/sorting/count_inversions.cpp b/sorting/count_inversions.cpp index ffbe9f8f5..53c5296a2 100644 --- a/sorting/count_inversions.cpp +++ b/sorting/count_inversions.cpp @@ -145,8 +145,6 @@ uint64_t mergeSort(T* arr, T* temp, uint32_t left, uint32_t right) { * how close or far off the array is to being sorted. * * @details - * @details - * @details * Number of inversions in a sorted array is 0. * Number of inversion in an array[1...n] sorted in * non-ascending order is n(n-1)/2, since each pair of elements