sangong
Results
1
comments of
sangong
``` // 编程题,找出字符串中"连续"出现最多的字符和个数 // 'abbkejsbcccwqaa' => {c: 3} let strs = "abbkejsbcccwqaa"; let maxKey = "", count = 0, prevStr = "", prevCount = 0, curStr = ""; function getResult(str)...