Skip to content

Instantly share code, notes, and snippets.

@SergeyTLV
Created October 1, 2020 20:00
Show Gist options
  • Save SergeyTLV/10c11351b7fd491aed54a2151abdc4b6 to your computer and use it in GitHub Desktop.
Save SergeyTLV/10c11351b7fd491aed54a2151abdc4b6 to your computer and use it in GitHub Desktop.
func check<T: Equatable>(_ a: [T], _ x: T) -> Bool {
// Your code here
if a.contains(x) {
return true
}else{
return false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment