Question: sorting Write a function called sort_restos(resto_list, sort_index, reverse) that performs the selection sort algorithm on resto_list. You may use the selection sort code from class
sorting

Write a function called sort_restos(resto_list, sort_index, reverse) that performs the selection sort algorithm on resto_list. You may use the selection sort code from class as a starting point. resto_list is a list of lists, where each sublist contains three (3) elements: restaurant name (string), meal price (integer), and its rating out of 5 stars (oat). Here is an example: resto_list = [[\"Botanist",60,5.0], ["H Tasting Lounge",25,3.0], ["Carderos\
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
