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...
Amazon Software Developer interview questions & answers
A Software Developer was asked 1mo agoQ. What is HTML?
A Software Developer was asked 1mo agoQ. What is MySQL?
A Software Developer was asked 2mo agoQ. Given two strings s and t, return true if they are equal when both are typed int...read more
Popular interview questions of Software Developer
A Software Developer was asked 1mo agoQ1. What is HTML?
A Software Developer was asked 1mo agoQ2. What is MySQL?
A Software Developer was asked 2mo agoQ3. What is the system design for the cart feature in an e-commerce website?
Top HR questions asked in Amazon Software Developer
A Software Developer was asked 1mo agoQ1. Tell me about a time you had to get to the root cause of a problem
A Software Developer was asked 5mo agoQ2. What are the short-term and long-term goals for the team or organization?
A Software Developer was asked 5mo agoQ3. Why do you want to work at Amazon?
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

