Skip to content

Instantly share code, notes, and snippets.

@piyushdec
Last active July 12, 2019 21:10
Show Gist options
  • Select an option

  • Save piyushdec/f8ca3524f026f54ed1766b2fd8efa7d2 to your computer and use it in GitHub Desktop.

Select an option

Save piyushdec/f8ca3524f026f54ed1766b2fd8efa7d2 to your computer and use it in GitHub Desktop.
func repeatedNTimes(_ A: [Int]) -> Int {
var set = Set<Int>()
for num in A {
if set.contains(num) {
return num
}
set.insert(num)
}
return -1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment