DEV Community

Discussion on: Sorting Characters in a String By Their Frequency

Collapse
 
chety profile image
Chety

Hi Alisa,

Thanks for the series. I also solved it with same approach but used different techniques. I am sharing mine , hope it helps someone else.

var frequencySort = function(s) {
    const charCountHash = Array.from(s).reduce((acc,ch) => {
    acc[ch] = (acc[ch] || 0) + 1;
    return acc;
  }, {});

  return Object.entries(charCountHash).sort((a,b) => b[1] - a[1]).reduce((acc,charHash) => {
        const [ch,count] = charHash;
        return acc += ch.repeat(count);        
   }, ""); 
};
Enter fullscreen mode Exit fullscreen mode