NIUCLOUD是一款SaaS管理后台框架多应用插件+云编译。上千名开发者、服务商正在积极拥抱开发者生态。欢迎开发者们免费入驻。一起助力发展! 广告
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. Example 1: ``` Input: [1,2,3,1] Output: true Example 2: ``` Example 2: ``` Input: [1,2,3,4] Output: false Example 3: ``` Example 3: ``` Input: [1,1,1,3,3,4,3,2,4,2] Output: true ``` ``` /** * @param {number[]} nums * @return {boolean} */ var containsDuplicate = function(nums) { nums.sort(); for(var i = 0; i < nums.length-1; i++){ if(nums[i] == nums[i+1]){ return true; } } return false; }; ```