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.
#####思路 将nums数组元素全部放入集合 最后判断nums数组长度与集合的size是否相等