LeetCode/problems/swift/contains-duplicate.swift

13 lines
286 B
Swift
Raw Normal View History

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
}
}