Earl Lam

Results 1 comments of Earl Lam

```javascript let str = '1, 2, 3, 5, 7, 8, 10'; let foo = str => { let arr = str.split(',').map(Number); let subArr = arr[0] return arr.reduce((prev,cur,index)=>{ if(cur + 1...