leetcode217专题

leetcode217-Intersection of Two Arrays

这道题目要求俩个数组的交集,且不能重复,我们可以很自然的想到一种办法,就是先遍历第一个数组,将元素存入set,然后再遍历第二个数组,如果元素在set中存在那就说明该元素是肯定存在于第一个数组中的,同时可以把该元素也存入一个set(因为要求输出数组中元素是唯一的),set相对来说数据结构要比数组复杂,所以cpu时间也不会低 还有另外一种方法,这种在数组类算法中一定要考虑到这种方法,就是用数组元素的

leetcode217~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

LeetCode217 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