Missing Numbers Problem Statement

You are provided with an array called ARR, consisting of distinct positive integers. Your task is to identify all the numbers that fall within the range of the smallest and largest elements in the array but are not present in the array itself. The missing numbers need to be returned in a sorted order.

Example:

Input:
ARR = [4, 2, 9]
Output:
3 5 6 7 8
Explanation:

The numbers 3, 5, 6, 7, and 8 are within the range of the elements in ARR but are not found within the array itself.

Constraints:

  • 1 <= T <= 10
  • 1 <= N <= 105
  • 0 <= ARR[i] <= 150000
Note:

No need to print the output explicitly. Implement the function to return the result.

AnswerBot
2d

Identify missing numbers within the range of smallest and largest elements in an array.

  • Find the smallest and largest elements in the array.

  • Generate a list of numbers within this range.

  • Remove numbers t...read more

Help your peers!
Add answer anonymously...
Adobe Software Developer Intern Interview Questions
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
65 L+

Reviews

4 L+

Interviews

4 Cr+

Salaries

1 Cr+

Users/Month

Contribute to help millions

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter