Hacker News new | ask | show | jobs
by pxndx 2851 days ago
Runs can be increasing or decreasing, a reversed array is a single run. Worst case is n/2 because you can always split the array in pairs (if it alternates a high and a low value for example).
1 comments

Ah I didn't know it also exploited reversed runs. Amazing.