Sort a string by the frequency of each character.
Given a lowercase string, return a new string sorted by the frequency of each character in descending order, followed by the characters in alphabetical order if frequencies are the same.
Example: For mississippi
the output should be iiiissssppm
# | Size | % | Users |
---|---|---|---|
#1 | 73 c. | Top 11% | |
#2 | 75 c. | Top 22% | |
#3 | 78 c. | Top 33% | |
#4 | 80 c. | Top 44% | |
#5 | 82 c. | Top 56% | |
#6 | 87 c. | Top 67% | |
#7 | 88 c. | Top 78% | |
#8 | 148 c. | Top 89% | |
#9 | 174 c. | Top 100% |