Results 1 comments of Sun

```javascript function maxChildStr(str) { const map = new Map(); let len = 0; str.match(/(\S)\1*/g).forEach(data => { const o = data.charAt(0); // map长度为0 或者 有更大子串出现 if (!map.size || data.length > len)...