Question: python question Assume you are given a sorted list of integers to search. Your job is to write a search algorithm to find the index

python question
Assume you are given a sorted list of integers to search. Your job is to write a search algorithm to find the index of a particular number The second function you will write should be called 'myLSearch'. Your function should take two (2) arguments: an integer to search for and a sorted list of integers. The function should return one (1) integer, the index in the input list containing the input integer. If the input integer does not exist in the list, your function should return -1 For credit, you MUST use either a for or a while loop. This search algorithm should NOT be recursive There should be no call to itself in the body of the function or you will get no credit
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
