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
4mo
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 & answers
A Software Developer Intern was asked Q. Unbounded Knapsack Problem Statement Given ‘N’ items, each with a specific profi...read more
A Software Developer Intern was asked Q. Minimum Cost to Make String Valid Given a string containing only '{' and '}', de...read more
A Software Developer Intern was asked Q. Digit Count In Range Problem Statement Given an integer K, and two numbers A and...read more
Popular interview questions of Software Developer Intern
A Software Developer Intern was asked Q1. Unbounded Knapsack Problem Statement Given ‘N’ items, each with a specific profi...read more
A Software Developer Intern was asked Q2. Minimum Cost to Make String Valid Given a string containing only '{' and '}', de...read more
A Software Developer Intern was asked Q3. Digit Count In Range Problem Statement Given an integer K, and two numbers A and...read more
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

