首页 > 代码库 > leetcode 217
leetcode 217
217. Contains Duplicate
Given an array of integers, find if the array contains any duplicates. Your function should return true if any value appears at least twice in the array, and it should return false if every element is distinct.
题意:判断数组中是否有重复的元素,如果没有返回false,反之返回true.
解法:先对数组进行排序,然后比较排序之后数组相邻元素。
代码如下:
1 class Solution { 2 public: 3 bool containsDuplicate(vector<int>& nums) { 4 int size = nums.size(); 5 if(size == 0 || size == 1) 6 { 7 return false; 8 } 9 sort(nums.begin(), nums.end());10 for(int i = 1; i < nums.size(); i++)11 {12 if(nums[i-1] == nums[i])13 {14 return true;15 }16 }17 return false;18 }19 };
leetcode 217
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。