268. Missing Number - Detailed Explanation

Free Coding Questions Catalog
Boost your coding skills with our essential coding questions catalog. Take a step towards a better tech career now!

Problem Statement

Description:
You are given an array nums containing n distinct numbers taken from the range [0, n]. In other words, there are n + 1 possible numbers, but the array contains only n of them. Your task is to find and return the only number in the range that is missing from the array.

Constraints:

  • The array nums contains n distinct integers.

  • The integers are in the range [0, n].

  • You must solve the problem without using extra space for another array (if possible) and with linear time complexity.

Example 1:

  • Input: nums = [3, 0, 1]
  • Output: 2
  • Explanation:
    The numbers in the range [0, 3] are [0, 1, 2, 3]. Since 2 is missing from the array, the output is 2.

Example 2:

  • Input: nums = [0, 1]
  • Output: 2
  • Explanation:
    The range is [0, 1, 2] and the missing number is 2.

Example 3:

  • Input: nums = [9,6,4,2,3,5,7,0,1]
  • Output: 8
  • Explanation:
    The numbers in the range [0, 9] are [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]. The number 8 is missing.

Hints Before the Solution

  • Hint 1: Consider the total sum of numbers from 0 to n. Compare it with the sum of the given array. The difference will be the missing number.

  • Hint 2: Alternatively, think about using bitwise XOR. If you XOR all indices and array values together, the duplicate XOR operations will cancel out, leaving the missing number.

  • Hint 3: A brute-force approach could involve sorting the array and scanning through the numbers, but there are more efficient solutions.

Approaches

Approach 1: Summation Formula

Explanation:

  • Idea:
    The sum of the first n natural numbers (including 0) is given by the formula:
    [ \text{expected\_sum} = \frac{n \times (n+1)}{2} ] Compute the sum of elements in the given array and subtract it from the expected sum. The result is the missing number.
  • Steps:
    1. Calculate expected_sum for numbers from 0 to n.
    2. Compute actual_sum by summing all elements in nums.
    3. The missing number is expected_sum - actual_sum.
  • Complexity:
    • Time: O(n)
    • Space: O(1)

Approach 2: Bitwise XOR

Explanation:

  • Idea:
    XOR has a unique property where a number XORed with itself is 0, and a number XORed with 0 is the number itself. By XORing all indices and all numbers in nums, every number that appears twice will cancel out, leaving the missing number.
  • Steps:
    1. Initialize a variable xor with 0.

    2. XOR all numbers from 0 to n with xor.

    3. XOR every element in nums with the same variable.

    4. The final value of xor is the missing number.

  • Complexity:
    • Time: O(n)
    • Space: O(1)

Approach 3: Sorting (Less Optimal)

Explanation:

  • Idea:
    Sort the array and then iterate through it, comparing each number with its index. The first index that does not match the number is the missing number.

  • Steps:

    1. Sort the array.
    2. Loop through the array and if nums[i] does not equal i, then i is the missing number.
    3. If all indices match, then the missing number is n.
  • Complexity:

    • Time: O(n log n) due to sorting
    • Space: O(1) or O(n) depending on the sorting algorithm used.

Python Code

Below is the Python implementation using the Summation Formula approach:

Python3
Python3

. . . .

Below is the Python code using the XOR method:

Python3
Python3

. . . .

Java Code

Below is the Java implementation using the Summation Formula approach.

Java
Java

. . . .

Java Code

Below is the java code using the XOR approach:

Java
Java

. . . .

Complexity Analysis

  • Time Complexity:

    • Both the summation method and the XOR method require a single pass (or two simple passes) through the array, giving a time complexity of O(n).
  • Space Complexity:

    • Both approaches use O(1) extra space.

Step-by-Step Walkthrough & Visual Example

Consider the input nums = [3, 0, 1]:

  1. Determine n:
    The length of the array is 3, so the full range is [0, 3] (i.e., possible numbers are 0, 1, 2, 3).

  2. Using the Summation Formula:

    • Calculate expected sum:
      [ \text{expected\_sum} = \frac{3 \times (3+1)}{2} = \frac{12}{2} = 6 ]
    • Calculate actual sum:
      [ \text{actual\_sum} = 3 + 0 + 1 = 4 ]
    • The missing number is:
      [ 6 - 4 = 2 ]
  3. Using the XOR Method:

    • XOR numbers from 0 to 3:
      [ 0 \oplus 1 \oplus 2 \oplus 3 = X ]
    • XOR the result with all numbers in nums (3, 0, 1):
      The numbers that appear in both groups cancel out, leaving 2 as the final result.

Common Mistakes, Edge Cases & Alternative Variations

Common Mistakes:

  • Incorrect Formula:
    Mistakenly using the formula for the sum of the first n numbers when the range is [0, n].
  • Overflow Concerns:
    In some languages, summing large numbers might cause overflow. However, given the constraints, this is typically not an issue.
  • Not Handling an Empty Array:
    Although the problem guarantees at least one number, always consider how your solution would behave if nums were empty.

Edge Cases:

  • Single Element Array:
    If nums contains only one element (either 0 or 1), ensure the solution correctly returns the missing number.

  • Array in Sorted Order vs. Unsorted Order:
    The solution should work regardless of the order of elements in the input array.

Alternative Variations:

  • Finding Multiple Missing Numbers:
    A variant of the problem may involve finding all missing numbers in an array that should contain a range.

  • Using Extra Space:
    An approach using a boolean array or hash set to mark seen numbers can also be used, but it requires extra space.

  • First Missing Positive:
    Find the smallest missing positive integer in an unsorted array.

  • Find All Numbers Disappeared in an Array:
    Identify all numbers in the range that do not appear in the array.

  • Set Mismatch:
    Find the number that is repeated and the number that is missing in an array containing numbers from 1 to n.

TAGS
leetcode
CONTRIBUTOR
Design Gurus Team
-

GET YOUR FREE

Coding Questions Catalog

Design Gurus Newsletter - Latest from our Blog
Boost your coding skills with our essential coding questions catalog.
Take a step towards a better tech career now!
Explore Answers
How many products are in Amazon?
What is a good score for an aptitude test?
2560. House Robber IV - Detailed Explanation
Learn to solve Leetcode 2560. House Robber IV with multiple approaches.
Related Courses
Image
Grokking the Coding Interview: Patterns for Coding Questions
Grokking the Coding Interview Patterns in Java, Python, JS, C++, C#, and Go. The most comprehensive course with 476 Lessons.
Image
Grokking Modern AI Fundamentals
Master the fundamentals of AI today to lead the tech revolution of tomorrow.
Image
Grokking Data Structures & Algorithms for Coding Interviews
Unlock Coding Interview Success: Dive Deep into Data Structures and Algorithms.
Image
One-Stop Portal For Tech Interviews.
Copyright © 2025 Design Gurus, LLC. All rights reserved.
;