Skip to content

Commit 7a8bda6

Browse files
authored
Update kth-largest-element-in-an-array.cpp
1 parent c6ff930 commit 7a8bda6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

C++/kth-largest-element-in-an-array.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class Solution {
2222
return;
2323
} else if (pivot_left > n) {
2424
right = pivot_left - 1;
25-
} else { // mid_right < n.
25+
} else { // pivot_right < n.
2626
left = pivot_right + 1;
2727
}
2828
}

0 commit comments

Comments
 (0)