I have a nested li below, I wanted to return a nested li with the string with and min of the int value within the same string value. Any idea?
li=[['a', 10], ['a', 20], ['a', 20], ['a', 40], ['a', 50], ['a', 60]
, ['b', 10], ['b', 20], ['b', 30], ['b', 40]
, ['c', 10], ['c', 10], ['c', 20]]
return
min_li=[['a', 10], ['b', 10], ['c', 10]]

['b', 10]were['b', 11]? Should it still appear in the output?