Y
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
areyousure
1714 days ago
After the first iteration of the loop (and every other one too), A[i] is the maximum of the array, not the minimum.
link
ac42
1713 days ago
Oh crap, now I see it. Thanks!
link