mirror of
https://gitlab.com/mfocko/LeetCode.git
synced 2024-11-10 08:19:06 +01:00
13 lines
286 B
Swift
13 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
|
||
|
}
|
||
|
}
|