Hacker News new | ask | show | jobs
by rootlocus 2887 days ago

    return min + (max - min) / 2
Oh, you want a random number?
1 comments

Or in O(1):

  return min
Alternatively

  return max
> Or in O(1)

You mean in one instruction? The parent comment is O(1). The methods in the article are all O(1) too.