Find Missing Number In String Problem Statement
You have a sequence of consecutive nonnegative integers. By appending all integers end-to-end, you formed a string S
without any separators. During this process, you accidentally omitted exactly one integer from the sequence. Given the string, your task is to find the missing integer.
If there is more than one missing integer, if all integers are present, or if the string is invalid, return -1.
Example:
Input:
S = "1113"
Output:
12
Explanation:
The sequence 11, 12, 13 without one integer forms "1113" by missing 12.
Input:
T
S
Output:
Missing number for each test case
Constraints:
1 <= T <= 100
1 <= |S| <= 10^4
0 <= S[i] <= 9
Note:
The numbers will have no more than six digits and consist of digits 0 to 9 only.

AnswerBot
4mo
Given a string of consecutive nonnegative integers with one missing number, find the missing integer.
Iterate through all possible substrings and check if they form a valid sequence of consecutive inte...read more
Help your peers!
Add answer anonymously...
UBS ENO interview questions & answers
An ENO was asked Q. Do you have a reliable WiFi connection and a laptop/desktop computer?
An ENO was asked Q. What is the concept of Seclending, Repurchase, and Reverse Repurchase Agreement?
An ENO was asked Q. Pitch Credit Suisse to a Manager in one minute.
Popular interview questions of ENO
An ENO was asked Q1. Do you have a reliable WiFi connection and a laptop/desktop computer?
An ENO was asked Q2. What is the concept of Seclending, Repurchase, and Reverse Repurchase Agreement?
An ENO was asked Q3. Pitch Credit Suisse to a Manager in one minute.
Top HR questions asked in UBS ENO
An ENO was asked Q1. Walk me through your resume.
An ENO was asked Q2. What is your weakness and how did you improve on it?
An ENO was asked Q3. What is one reason we should hire you?
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

