I have an associative array which I want to sort
items = {1: [5, 30, 0.16666666666666666], 2: [10, 20, 0.5]}
I want to sort items by float value with descending order so after sorting I should get
items = {2: [10, 20, 0.5], 1: [5, 30, 0.16666666666666666]}
Note I want to sort mainly these 0.16666666666666666 and 0.5
Any help is welcomed!