标签:span div 整数 ++ 出现 style 除了 数组 int
给定一个非空整数数组,除了某个元素只出现一次以外,其余每个元素均出现两次。找出那个只出现了一次的元素
class Solution { public: int singleNumber(vector<int>& nums) { int result = 0; for (int i = 0; i< nums.size(); i++) { result ^=nums [i]; } return result; } };
标签:span div 整数 ++ 出现 style 除了 数组 int
原文地址:https://www.cnblogs.com/qian-lu/p/9715508.html