博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
136. Single Number
阅读量:5744 次
发布时间:2019-06-18

本文共 297 字,大约阅读时间需要 1 分钟。

Given an array of integers, every element appears twice except for one. Find that single one.

//只有一个元素不一样。那么集合中所有元素异或就可以得到结果。

class Solution {public:    int singleNumber(vector
& nums) { int res = 0; for(int i = 0;i

 

转载于:https://www.cnblogs.com/xiuxiu55/p/6503709.html

你可能感兴趣的文章