Skip to content

Instantly share code, notes, and snippets.

@AppleCEO
Created January 14, 2020 14:25
Show Gist options
  • Select an option

  • Save AppleCEO/367b398e73387cec43fc71cb87431ee0 to your computer and use it in GitHub Desktop.

Select an option

Save AppleCEO/367b398e73387cec43fc71cb87431ee0 to your computer and use it in GitHub Desktop.
func solution(_ num:Int) -> String {
return num%2 == 0 ? "Even" : "Odd"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment