Preetika Prakashpreetikaprakash.hashnode.dev·May 11, 2023DSA Day 7/100Topic: Searching Questions Successfully Completed: 1 1) Left IndexEasy Left Index Time Complexity : O(logn) Space Complexity : O(1) QuestionInput: N = 7 arr[] = {10,20,20,20,20,20,20} x = 20 Output: 1 Explanation: 20 is present 5 times, but its left...Searching Algorithms