题解 | #数组中只出现一次的两个数字#

数组中只出现一次的两个数字

https://www.nowcoder.com/practice/389fc1c3d3be4479a154f63f495abff8

/**
 * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
 *
 * 
 * @param nums int整型一维数组 
 * @return int整型一维数组
 */
function FindNumsAppearOnce( nums ) {
    // write code here
    const map = new Map();
    const result = [];
    for(let n of nums){
        if(map.has(n)){
            map.delete(n)
        }else{
            map.set(n,1);
        }
    };
    for(let [key,val] of map){
        if(val===1){
            result.push(key);
        }
    }
    return result[0]<result[1]?result:[result[1],result[0]];
}
module.exports = {
    FindNumsAppearOnce : FindNumsAppearOnce
};

全部评论

相关推荐

11-18 09:44
Java
小白也想要offer:简历别放洋屁,搞不还还放错了,当然你投外企除外,以上纯属个人观点
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务