Yahoo India Web Search

Search results

  1. 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. 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.

  3. The task is to find the repeating and missing numbers a and b. Return a 0-indexed integer array ans of size 2 where ans[0] equals to a and ans[1] equals to b. Example 1: Input: grid = [[1,3],[2,2]] Output: [2,4] Explanation: Number 2 is repeated and number 4 is missing so the answer is [2,4].

  4. Find All Numbers Disappeared in an Array - Given an array nums of n integers where nums [i] is in the range [1, n], return an array of all the integers in the range [1, n] that do not appear in nums.

  5. First Missing Positive - Given an unsorted integer array nums. Return the smallest positive integer that is not present in nums. You must implement an algorithm that runs in O(n) time and uses O(1) auxiliary space. Example 1: Input: nums = [1,2,0] Output: 3 Explanation: The numbers in the range [1,2] are all in the array.

  6. Kth Missing Positive Number - Given an array arr of positive integers sorted in a strictly increasing order, and an integer k. Return the kth positive integer that is missing from this array. Example 1: Input: arr = [2,3,4,7,11], k = 5 Output: 9 Explanation: The missing positive integers are [1,5,6,8,9,10,12,13,...].

  7. Find the Duplicate Number - Given an array of integers nums containing n + 1 integers where each integer is in the range [1, n] inclusive. There is only one repeated number in nums, return this repeated number. You must solve the problem without modifying the array nums and using only constant extra space.

  8. Missing Element in Sorted Array - LeetCode. Can you solve this real interview question? Missing Element in Sorted Array - Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.

  9. Missing Number - LeetCode. Can you solve this real interview question? Missing Number - Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.

  10. leetcode.com › problem-list › arrayArray - LeetCode

    Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.

  1. Searches related to missing number in array leetcode

    missing number in array gfg