If the given array 'A' is: [1, 2, 4, 7] and M = 6. We insert M = 6 in the array and get 'A' as: [1, 2, 4, 6, 7]. The position of 6 is 3 (according to 0-based indexing)
1) The given array has distinct integers.
2) The given array may be empty.
The first line contains two space-separated integers 'N' and 'M', representing the length of the array and the target integer.
The second line contains 'N' space-separated integers, Ai representing the given array.
Print a single line containing a single integer denoting the position of 'M' in the final array, on a new line.
You do not need to print anything, it has already been taken care of. Just implement the given function.
0 ≤ N ≤ 10 ^ 5
1 ≤ M ≤ 10 ^ 9
1 ≤ Ai ≤ 10 ^ 9
Where 'Ai' is the array element at index 'i'.
Time Limit: 1 sec.
Try to solve the problem in O(log N).
Merge Two Sorted Arrays Without Extra Space
Search In A Sorted 2D Matrix
Ninja And The Strictly Increasing Array
Negative To The End
Fake Coin Problem