
Asked in Amazon
Find First and Last Positions of an Element in a Sorted Array
Given a sorted array ARR
consisting of N
integers and an integer X
, find the first and last positions of occurrence of X
in the array.
Note:
1. The array follows 0-based indexing, so return 0-based indices.
2. If X
is not present in the array, return “-1 -1”.
3. If X
is only present once in the array, the first and last position of its occurrence will be the same.
Follow Up:
Try to solve the problem in O(log(N)) time complexity.
Input Format:
The first line of the input contains an integer T
denoting the number of test cases.
The first line of each test case contains the integer N
, the size of the sorted array.
The second line contains N
space-separated integers denoting the array elements.
The third and last line contains the value X
, whose first and last position of occurrence you need to find.
Output Format:
The only line of output of each test case should contain two space-separated integers: the first and the last position of occurrence of X
in the array.
Constraints:
- 1 <= T <= 50
- 1 <= N <= 104
- -109 <= ARR[i] <= 109
- -109 <= X <= 109
Time Limit: 1 sec
Note:
Just implement the given function. You do not need to print anything, it has already been taken care of.

AnswerBot
4mo
Find the first and last positions of an element in a sorted array efficiently.
Use binary search to find the first occurrence of X in the array.
Use binary search to find the last occurrence of X in the...read more
Help your peers!
Add answer anonymously...
Top Software Developer Interview Questions Asked at Amazon
Q. Could you describe the process for designing a data structure that allows for al...read more
Q. What is Java?
Q. What is PHP?
Interview Questions Asked to Software Developer at Other Companies
Top Skill-Based Questions for Amazon Software Developer
Algorithms Interview Questions and Answers
250 Questions
Data Structures Interview Questions and Answers
250 Questions
Web Development Interview Questions and Answers
250 Questions
Java Interview Questions and Answers
250 Questions
SQL Interview Questions and Answers
250 Questions
Software Development Interview Questions and Answers
250 Questions
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

