Off-by-one on range boundaries
Wrong move: Loop endpoints miss first/last candidate.
Usually fails on: Fails on minimal arrays and exact-boundary answers.
Fix: Re-derive loops from inclusive/exclusive ranges before coding.
Move from brute-force thinking to an efficient approach using array strategy.
Koko loves to eat bananas. There are n piles of bananas, the ith pile has piles[i] bananas. The guards have gone and will come back in h hours.
Koko can decide her bananas-per-hour eating speed of k. Each hour, she chooses some pile of bananas and eats k bananas from that pile. If the pile has less than k bananas, she eats all of them instead and will not eat any more bananas during this hour.
Koko likes to eat slowly but still wants to finish eating all the bananas before the guards return.
Return the minimum integer k such that she can eat all the bananas within h hours.
Example 1:
Input: piles = [3,6,7,11], h = 8 Output: 4
Example 2:
Input: piles = [30,11,23,4,20], h = 5 Output: 30
Example 3:
Input: piles = [30,11,23,4,20], h = 6 Output: 23
Constraints:
1 <= piles.length <= 104piles.length <= h <= 1091 <= piles[i] <= 109Problem summary: Koko loves to eat bananas. There are n piles of bananas, the ith pile has piles[i] bananas. The guards have gone and will come back in h hours. Koko can decide her bananas-per-hour eating speed of k. Each hour, she chooses some pile of bananas and eats k bananas from that pile. If the pile has less than k bananas, she eats all of them instead and will not eat any more bananas during this hour. Koko likes to eat slowly but still wants to finish eating all the bananas before the guards return. Return the minimum integer k such that she can eat all the bananas within h hours.
Start with the most direct exhaustive search. That gives a correctness anchor before optimizing.
Pattern signal: Array · Binary Search
[3,6,7,11] 8
[30,11,23,4,20] 5
[30,11,23,4,20] 6
minimize-max-distance-to-gas-station)maximum-candies-allocated-to-k-children)minimized-maximum-of-products-distributed-to-any-store)frog-jump-ii)minimum-time-to-repair-cars)Source-backed implementations are provided below for direct study and interview prep.
// Accepted solution for LeetCode #875: Koko Eating Bananas
class Solution {
public int minEatingSpeed(int[] piles, int h) {
int l = 1, r = (int) 1e9;
while (l < r) {
int mid = (l + r) >> 1;
int s = 0;
for (int x : piles) {
s += (x + mid - 1) / mid;
}
if (s <= h) {
r = mid;
} else {
l = mid + 1;
}
}
return l;
}
}
// Accepted solution for LeetCode #875: Koko Eating Bananas
func minEatingSpeed(piles []int, h int) int {
return 1 + sort.Search(slices.Max(piles), func(k int) bool {
k++
s := 0
for _, x := range piles {
s += (x + k - 1) / k
}
return s <= h
})
}
# Accepted solution for LeetCode #875: Koko Eating Bananas
class Solution:
def minEatingSpeed(self, piles: List[int], h: int) -> int:
def check(k: int) -> bool:
return sum((x + k - 1) // k for x in piles) <= h
return 1 + bisect_left(range(1, max(piles) + 1), True, key=check)
// Accepted solution for LeetCode #875: Koko Eating Bananas
impl Solution {
pub fn min_eating_speed(piles: Vec<i32>, h: i32) -> i32 {
let mut l = 1;
let mut r = *piles.iter().max().unwrap_or(&0);
while l < r {
let mid = (l + r) >> 1;
let mut s = 0;
for x in piles.iter() {
s += (x + mid - 1) / mid;
}
if s <= h {
r = mid;
} else {
l = mid + 1;
}
}
l
}
}
// Accepted solution for LeetCode #875: Koko Eating Bananas
function minEatingSpeed(piles: number[], h: number): number {
let [l, r] = [1, Math.max(...piles)];
while (l < r) {
const mid = (l + r) >> 1;
const s = piles.map(x => Math.ceil(x / mid)).reduce((a, b) => a + b);
if (s <= h) {
r = mid;
} else {
l = mid + 1;
}
}
return l;
}
Use this to step through a reusable interview workflow for this problem.
Check every element from left to right until we find the target or exhaust the array. Each comparison is O(1), and we may visit all n elements, giving O(n). No extra space needed.
Each comparison eliminates half the remaining search space. After k comparisons, the space is n/2ᵏ. We stop when the space is 1, so k = log₂ n. No extra memory needed — just two pointers (lo, hi).
Review these before coding to avoid predictable interview regressions.
Wrong move: Loop endpoints miss first/last candidate.
Usually fails on: Fails on minimal arrays and exact-boundary answers.
Fix: Re-derive loops from inclusive/exclusive ranges before coding.
Wrong move: Setting `lo = mid` or `hi = mid` can stall and create an infinite loop.
Usually fails on: Two-element ranges never converge.
Fix: Use `lo = mid + 1` or `hi = mid - 1` where appropriate.