for example if list= [2,3,3,4,5,7,7,9,10],
i want to return index 1.
In this case,there is no target parameter unlike the usual way we do binary search
[Updated]
[This is the code that I have for now.It should return 1 since the first occurence of a multiple value,which is 2,is at index 1
[Updated]