请补充下列程序(硬币找零问题):def get_min_coins(amount_rem):coin_combinations = [1,5,10,25,100]coin_list = []sorted_coin_combinations = sorted(coin_combinations,reverse=True)for coin_val in sorted_coin_combinations:coin_count =if coin_count > 0:coin_list.append()amount_rem -=if amount_rem <= 0.0:breakreturn coin_listget_min_coins(36)
补充下列程序(间隔任务规划):conference_list = [['e',8,10],['b',2,5],['c',4,7],['a',1,3],['d',6,9]]def get_max_schedule(con_list):con_schedule = []num_con = len(con_list)con_list.sort(key=lambda x:x[2])for n in :if not con_schedule:con_schedule.append()else:if :con_schedule.append()return con_scheduleget_max_schedule(conference_list)