/** * * @param numbers int整型一维数组 * @param target int整型 * @return int整型一维数组 */ function twoSum( numbers , target ) { // write code here const map=new Map() for(let i=0;i<numbers.length;i++) { complment=target-numbers[i] if(map.has(complment)) { ...