Skip to content

Instantly share code, notes, and snippets.

@TarasShu
Last active July 16, 2020 12:33
Show Gist options
  • Save TarasShu/35c98651621bb7f5b20500572e0cbc00 to your computer and use it in GitHub Desktop.
Save TarasShu/35c98651621bb7f5b20500572e0cbc00 to your computer and use it in GitHub Desktop.
func filterStateNames(_ arr: [String], _ type: String) -> [String] {
if type != "abb" {
return arr.filter({$0.count > 2})
}
if type != "full" {
return arr.filter({$0.count < 2})
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment