Hacker News new | ask | show | jobs
by ac42 1714 days ago
I am not clear why the proof is so long. By induction, the first i elements are already smaller than the A[i], so it's essentially an unoptimised version of

for i: 0..n-1 A[i] = min(A[i:n])

1 comments

After the first iteration of the loop (and every other one too), A[i] is the maximum of the array, not the minimum.
Oh crap, now I see it. Thanks!