Question: Write recursive code for the following problem using python 3.2+. Define a function named q2() that accepts a Dictionary of characters as a parameter and
Write recursive code for the following problem using python 3.2+.

Define a function named q2() that accepts a Dictionary of characters as a parameter and returns a List of the keys from the Dictionary, sorted in descending order based on their corresponding values (largest to smallest). The q2() function should complete this without using .sort() or sorted() or any other built-in Python sorting function. Some examples of the q2() function: q2 ({' Bar: 20, 'Handle': 40, 'Steps': 30, 'Spokes': 10, 'Gears' " 60}) ['Gears', 'Handle', 'Steps', 'Bar', 'Spokes'] q2 ({'Q': 120, 'L': 300, 'M': 80, 'D': 299}) ['L', 'D', 'Q', 'M']
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
