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:
1 | Input: [1,2,3,1] |
Example 2:
1 | Input: [1,2,3,4] |
Example 3:
1 | Input: [1,1,1,3,3,4,3,2,4,2] |
直接比對加入集合前個數或加入看過集合比對都可以
1 | class Solution(object): |
如果你覺得這篇文章很棒,請你不吝點讚 (゚∀゚)