Given a sorted array and a number k, write a code to count
the number of occurrences of a number k in a sorted array.
Find the number of occurrences of an element in a sorted array
In this tutorial, I have explained multiple approaches to count how many times the target value appears in a sorted array.
Code - https://webrewrite.com/count-frequenc...
For Example:
arr : { 1, 4, 7, 8, 8, 11, 11, 11, 11, 12, 13 }, k = 11
Number of occurrence: 4