About 14,300 results
Open links in new tab
  1. Missing Number - LeetCode

    Missing Number - Given an array nums containing n distinct numbers in the range [0, n], return the only number in the range that is missing from the array.

  2. Find the Missing Number - GeeksforGeeks

    Apr 19, 2025 · This means that the result of XOR of first n natural numbers with the XOR of all the array elements will be the missing number. To do so, calculate XOR of first n natural numbers and XOR …

  3. Find Missing Number Calculator Online

    Apr 9, 2024 · A Find Missing Number Calculator is an ingenious tool design to identify missing elements in a sequence of numbers. This tool is invaluable for students, educators, mathematicians, …

  4. 268. Missing Number - Solution & Explanation

    Every number that appears in both places will cancel out, leaving only the missing number. This allows us to find the answer in linear time and constant space, without sorting or extra data structures.

  5. Online calculator: Gaps and missing numbers finder

    This online calculator helps you find gaps and missing numbers in an integer sequence.

  6. 268. Missing Number - In-Depth Explanation - AlgoMonster

    Now, what if one number from the second set is missing? When we XOR everything, all pairs would cancel out to 0, except for the one number that doesn't have its pair - that's our missing number!

  7. Missing Number in a Sequence - AAA Math

    Determine if the order of numbers is ascending (getting larger in value) or descending (becoming smaller in value). Find the difference between numbers that are next to each other.

  8. LeetCode - Missing Number Fastest Solution

    Dec 30, 2024 · So, we iterate through the array once more from start to end and in each iteration we check if the current index has the correct number. If the current index does not have the correct …

  9. Find the Missing Number (C++, Java, Python) - FavTutor

    Dec 18, 2023 · In the Missing Number problem, we have an array of integers containing numbers in a specific range [0 to n], with one number missing from the sequence. Our task is to identify and …

  10. Find the Missing Number - Educative

    Oct 15, 2025 · Find the missing number from an array of 0..n or 1..n using optimal techniques. This Educative guide covers XOR, arithmetic-sum, sorting and cyclic sort approaches, proofs, edge …