‘ARR’ can also contain empty strings.
You will return -1 if ‘K’ does not exist in ‘ARR’.
‘ARR’ = [ “code”, “hi”, “”, “”, “studio”, “”, “to”, “welcome” ] and ‘K’ = “hi”.
As we can see ‘K’ is present on index 1 in ‘ARR’.
So we will return 1.
The first line of input contains a single integer T, representing the number of test cases.
Then the T test cases follow.
The first line of each test case contains an integer ‘N’ representing the size of ‘ARR’ and a string representing ‘K’.
The second line of each test case contains ‘N’ space-separated strings.
For every test case, print a single integer representing the location of ‘K’ in ‘ARR’, if ‘K’ is not present in ‘ARR’ then print -1.
The output of each test case is printed in a separate line.
You don’t have to print anything. It has already been taken care of. Just implement the given function.
1<= T <=100
1<= ‘N’ <=10^4
1<= |‘K’| <= 20
Time limit: 1 second
The idea is very simple as we just need to find the position of ‘K’ in ‘ARR’. So we will scan ‘ARR’ from left to right and match each string with ‘K’, If we find a match simply return the index else keep on iterating till the end of ‘ARR’.
The idea is to binary search on ‘ARR’ as ‘ARR’ is sorted. However, it would have been much easier to implement a binary search if we were not given empty strings in ‘ARR’. But still, we can use the binary search with some modification. So on encountering an empty string while performing binary search we will simply move to the closest non-empty string.
Search In A Sorted 2D Matrix
Ninja And The Strictly Increasing Array
Negative To The End
Sort 0s, 1s, 2s
Day 28 : Fake Coin Problem