https://blog.csdn.net/qq_43466457/article/details/104393464 ```//Init module if you need let mp function Init() { // write code here mp = new Map() } //Insert one char from stringstream function Insert(ch) { // write code here let num= mp.get(ch) if(!num){ mp.set(ch,1) } else{ mp.set(ch,num+1) } } ...