mirror of
https://gitlab.com/mfocko/LeetCode.git
synced 2024-11-10 00:09:06 +01:00
12 lines
286 B
Swift
12 lines
286 B
Swift
class Solution {
|
|
func containsDuplicate(_ nums: [Int]) -> Bool {
|
|
var encountered = Set<Int>()
|
|
for x in nums {
|
|
if encountered.contains(x) {
|
|
return true
|
|
}
|
|
encountered.insert(x)
|
|
}
|
|
return false
|
|
}
|
|
}
|