/** * * @param s string字符串 * @return bool布尔型 */ function isValid( s ) { // write code here let arr = []; const map = new Map(); map.set('{','}'); map.set('[',']'); map.set('(',')'); for(let i of s) { if(map.has(i)) { arr.push(map.get(i)); }el...