Competitive-Programming--Solution
Competitive-Programming--Solution copied to clipboard
Create Find Transition Point.cpp
Question -> You are given a sorted array containing only numbers 0 and 1. Find the transition point efficiently. The transition point is a point where "0" ends and "1" begins (0 based indexing). Note that, if there is no "1" exists, print -1. Thank You :)