
Frequency Sorting

Sort the given sequence so that its elements should be grouped and those groups end up in the decreasing frequency order, that is, the number of times element appears in the sequence. If two elements have the same frequency, their groups should end up according to the natural order of elements. For example:
If you want to practice more with the similar case, try Sort Array by Element Frequency mission.
Input: List of integers (int).
Output: List or another Iterable (tuple, iterator, generator) of integers (int).
Examples:
assert list(frequency_sorting([1, 2, 3, 4, 5])) == [1, 2, 3, 4, 5] assert list(frequency_sorting([3, 4, 11, 13, 11, 4, 4, 7, 3])) == [ 4, 4, 4, 3, 3, 11, 11, 7, 13, ]
How it is used: For analyzing data using mathematical statistics and mathematical analysis, and for finding trends and predicting future changes (systems, phenomena, etc.).
Preconditions:
- list length <= 100;
- max number <= 100.
The mission was taken from Python CCPS 109. It is taught for Ryerson Chang School of Continuing Education by Ilkka Kokkarinen