I need to sort a list of tuples (length 2) but specifically need it to sort by second value descending and then by first value ascending. i.e. (0,1)<(1,1)<(1,0)
I think I could do it without too much trouble with a comparison function, but would like to know if it's doable with a key function.