Question: You can make a new files test_sort_and_search_array.py and sort_and_search_array.py. In the appropriate directories. For this assignment, you can hard-code a list you pass to
You can make a new files test_sort_and_search_array.py and sort_and_search_array.py. In the appropriate directories. For this assignment, you can hard-code a list you pass to the sort_array() and search_array(). For extra credit, you can use the previous assignment get_list() Write 2 functions sort_array() and search_array(). O search_array() will return the index of the object in the list or a -1 if the item is not found O sort_array() will sort the list Write tests What is the return statement? Write a comment explaining why you included return OR Write a comment explaining why your code has no return statement. O Write tests for search_array() Test for item found Test for item not found Run failing test Write search_array() until your test passes Write a test your sort_array() Run failing test Write sort_array() until your test passes
Step by Step Solution
3.37 Rating (153 Votes )
There are 3 Steps involved in it
mainpy from sortandsearcharray import def findlitem this function passes item t... View full answer
Get step-by-step solutions from verified subject matter experts
