题解 | #字符串字符统计#
字符串字符统计
https://www.nowcoder.com/practice/777d0cd160de485cae0b1fd1dd973b44
replace大法 ! 我又来了 哈哈
function count(str) { let res = {} str.replace(/\s/g,'').split('').sort().join('').replace(/(.)\1*/g, $0 => { res[$0[0]] = $0.length; }) return res }