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.
Break down a hard problem into reliable checkpoints, edge-case handling, and complexity trade-offs.
You are given an integer array nums. In one operation, you can replace any element in nums with any integer.
nums is considered continuous if both of the following conditions are fulfilled:
nums are unique.nums equals nums.length - 1.For example, nums = [4, 2, 5, 3] is continuous, but nums = [1, 2, 3, 5, 6] is not continuous.
Return the minimum number of operations to make nums continuous.
Example 1:
Input: nums = [4,2,5,3] Output: 0 Explanation: nums is already continuous.
Example 2:
Input: nums = [1,2,3,5,6] Output: 1 Explanation: One possible solution is to change the last element to 4. The resulting array is [1,2,3,5,4], which is continuous.
Example 3:
Input: nums = [1,10,100,1000] Output: 3 Explanation: One possible solution is to: - Change the second element to 2. - Change the third element to 3. - Change the fourth element to 4. The resulting array is [1,2,3,4], which is continuous.
Constraints:
1 <= nums.length <= 1051 <= nums[i] <= 109Problem summary: You are given an integer array nums. In one operation, you can replace any element in nums with any integer. nums is considered continuous if both of the following conditions are fulfilled: All elements in nums are unique. The difference between the maximum element and the minimum element in nums equals nums.length - 1. For example, nums = [4, 2, 5, 3] is continuous, but nums = [1, 2, 3, 5, 6] is not continuous. Return the minimum number of operations to make nums continuous.
Start with the most direct exhaustive search. That gives a correctness anchor before optimizing.
Pattern signal: Array · Hash Map · Binary Search · Sliding Window
[4,2,5,3]
[1,2,3,5,6]
[1,10,100,1000]
longest-repeating-character-replacement)continuous-subarray-sum)moving-stones-until-consecutive-ii)minimum-one-bit-operations-to-make-integers-zero)minimum-adjacent-swaps-for-k-consecutive-ones)Source-backed implementations are provided below for direct study and interview prep.
// Accepted solution for LeetCode #2009: Minimum Number of Operations to Make Array Continuous
class Solution {
public int minOperations(int[] nums) {
int n = nums.length;
Arrays.sort(nums);
int m = 1;
for (int i = 1; i < n; ++i) {
if (nums[i] != nums[i - 1]) {
nums[m++] = nums[i];
}
}
int ans = n;
for (int i = 0; i < m; ++i) {
int j = search(nums, nums[i] + n - 1, i, m);
ans = Math.min(ans, n - (j - i));
}
return ans;
}
private int search(int[] nums, int x, int left, int right) {
while (left < right) {
int mid = (left + right) >> 1;
if (nums[mid] > x) {
right = mid;
} else {
left = mid + 1;
}
}
return left;
}
}
// Accepted solution for LeetCode #2009: Minimum Number of Operations to Make Array Continuous
func minOperations(nums []int) int {
sort.Ints(nums)
n := len(nums)
m := 1
for i := 1; i < n; i++ {
if nums[i] != nums[i-1] {
nums[m] = nums[i]
m++
}
}
ans := n
for i := 0; i < m; i++ {
j := sort.Search(m, func(k int) bool { return nums[k] > nums[i]+n-1 })
ans = min(ans, n-(j-i))
}
return ans
}
# Accepted solution for LeetCode #2009: Minimum Number of Operations to Make Array Continuous
class Solution:
def minOperations(self, nums: List[int]) -> int:
ans = n = len(nums)
nums = sorted(set(nums))
for i, v in enumerate(nums):
j = bisect_right(nums, v + n - 1)
ans = min(ans, n - (j - i))
return ans
// Accepted solution for LeetCode #2009: Minimum Number of Operations to Make Array Continuous
use std::collections::BTreeSet;
impl Solution {
#[allow(dead_code)]
pub fn min_operations(nums: Vec<i32>) -> i32 {
let n = nums.len();
let nums = nums.into_iter().collect::<BTreeSet<i32>>();
let m = nums.len();
let nums = nums.into_iter().collect::<Vec<i32>>();
let mut ans = n;
for i in 0..m {
let j = match nums.binary_search(&(nums[i] + (n as i32))) {
Ok(idx) => idx,
Err(idx) => idx,
};
ans = std::cmp::min(ans, n - (j - i));
}
ans as i32
}
}
// Accepted solution for LeetCode #2009: Minimum Number of Operations to Make Array Continuous
function minOperations(nums: number[]): number {
const n = nums.length;
nums.sort((a, b) => a - b);
let m = 1;
for (let i = 1; i < n; ++i) {
if (nums[i] !== nums[i - 1]) {
nums[m++] = nums[i];
}
}
let ans = n;
for (let i = 0; i < m; ++i) {
const j = search(nums, nums[i] + n - 1, i, m);
ans = Math.min(ans, n - (j - i));
}
return ans;
}
function search(nums: number[], x: number, left: number, right: number): number {
while (left < right) {
const mid = (left + right) >> 1;
if (nums[mid] > x) {
right = mid;
} else {
left = mid + 1;
}
}
return left;
}
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: Zero-count keys stay in map and break distinct/count constraints.
Usually fails on: Window/map size checks are consistently off by one.
Fix: Delete keys when count reaches zero.
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.
Wrong move: Using `if` instead of `while` leaves the window invalid for multiple iterations.
Usually fails on: Over-limit windows stay invalid and produce wrong lengths/counts.
Fix: Shrink in a `while` loop until the invariant is valid again.