Frequency in a Sorted Array Problem Statement
Given a sorted array ARR
and a number X
, your task is to determine the count of occurrences of X
within ARR
.
Note:
- If
X
is not found in the array, return 0. - The array is sorted in non-decreasing order.
Input Format:
The first line contains an integer ‘T’ representing the number of test cases. Each test case includes two subsequent parts:
1. An integer N
representing the size of the input array.
2. A line of N
integers denoting the elements of the array.
3. A single integer X
for which you need to find occurrences.
Output Format:
For each test case, output a single line containing an integer representing the number of times the target element X
appears in the array.
Follow Up:
Try to implement a solution with O(log(N)) time complexity and O(1) space complexity.
Constraints:
- 1 ≤ T ≤ 102
- 1 ≤ N ≤ 104
- 0 ≤ ARR[i], X ≤ 109
- Time Limit: 1 sec
Special Note:
Your task is to implement the specified function, and you are not required to manage any input or output operations.

AnswerBot
1y
The task is to count the number of occurrences of a given number in a sorted array.
Use binary search to find the first and last occurrence of the given number in the array.
Subtract the indices of the ...read more
Help your peers!
Add answer anonymously...
Amazon Software Developer Intern interview questions & answers
A Software Developer Intern was asked 3mo agoQ. What is the code to calculate the distance between two nodes in a binary tree?
A Software Developer Intern was asked 4mo agoQ. Given a tree, find its diameter (the longest path between two nodes in the tree)...read more
A Software Developer Intern was asked 4mo agoQ. For a given array, how would you count the number of inversions?
Popular interview questions of Software Developer Intern
A Software Developer Intern was asked 3mo agoQ1. What is the code to calculate the distance between two nodes in a binary tree?
A Software Developer Intern was asked 4mo agoQ2. For a given array, how would you count the number of inversions?
A Software Developer Intern was asked 4mo agoQ3. Given a tree, find its diameter (the longest path between two nodes in the tree)...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

