We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Decent, but one error and one optimization. The error: in the while, the conditionals should be
if count >= goal:
worst = mid - 1
result = mid
else:
best = mid + 1
`
The optimization: the mid calculation should be mid = (worst + best) // 2
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Minimum Time Required
You are viewing a single comment's thread. Return to all comments →
Decent, but one error and one optimization. The error: in the while, the conditionals should be if count >= goal: worst = mid - 1 result = mid else: best = mid + 1 `
The optimization: the mid calculation should be
mid = (worst + best) // 2