Skip to content

Commit eb736e2

Browse files
马力马力
authored andcommitted
Refine
Signed-off-by: 马力 <mali0921@HPCL202007007deMacBook-Pro.local>
1 parent 1fd508d commit eb736e2

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

215_kth_largest_element_in_an_array/kth_elem.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,7 @@ int findKthLargest(int* nums, int numsSize, int k)
2828
{
2929
int lo = 0, hi = numsSize - 1;
3030
for (; ;) {
31-
printf("A:%d %d\n", lo, hi);
3231
int p = partition(nums, lo, hi);
33-
printf("B:%d %d\n", p, numsSize - k);
3432
if (p < numsSize - k) {
3533
lo = p + 1;
3634
} else if (p > numsSize - k) {

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy