Type, I have a list like this:
lista = [1,1,2,3,3,3]
And I want to order it to stay
lista = [3,3,3,1,1,2]
That is, the most occurring values would be at the beginning of the list, while the values less occurring at the end. I've tried...
asked by
31.12.2017 / 21:54