执着小白菜

文章
3
资源
0
加入时间
2年10月18天

判断数组中是否有重复的数

var containsDuplicate = function(nums) { let tmpSet = new Set(nums) let newNums = Array.from(tmpSet) if(nums.length == newNums.length) { return false } else { return tr...