题解 | #出现一次的数字#

出现一次的数字

http://www.nowcoder.com/practice/0bc646909e474ac5b031ec6836a47768

使用JS自带的indexOf函数与lastIndexOf函数

/**
  * 
  * @param A int整型一维数组 
  * @return int整型
  */
function singleNumber( A ) {
    // write code here
    for(let item of A){
        if(A.indexOf(item)===A.lastIndexOf(item)){
            return item;
        }
    }
}
module.exports = {
    singleNumber : singleNumber
};
全部评论

相关推荐

10-21 23:48
蚌埠坦克学院
csgq:可能没hc了 昨天一面完秒挂
点赞 评论 收藏
分享
10-11 17:45
门头沟学院 Java
走吗:别怕 我以前也是这么认为 虽然一面就挂 但是颇有收获!
点赞 评论 收藏
分享
2 收藏 评论
分享
牛客网
牛客企业服务