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

只出现一次的数字

https://www.nowcoder.com/practice/c04bd25f0396471b90dfc30d96b9109b

class Solution {
public:
    int singleNumber(vector<int>& nums) {
        // write code here
        int n = nums.size();
        int ans = 0;
        for(int i = 0; i < n; i++){
            ans ^= nums[i];
        }
        return ans;
    }
};

全部评论

相关推荐

01-27 15:41
门头沟学院 Java
想躺平的菜鸡1枚:我项目比你难、学历比你好、还有SCI论文,投java都被拒一大片,现在基本上都要问点agent开发
软件开发投递记录
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务