Skip to content

Instantly share code, notes, and snippets.

@motokiee
Created January 18, 2016 02:13
Show Gist options
  • Save motokiee/ae128f3be9170bdb8c57 to your computer and use it in GitHub Desktop.
Save motokiee/ae128f3be9170bdb8c57 to your computer and use it in GitHub Desktop.
extension IntegerType {
var isZorome: Bool {
let characters = "\(self)".characters
guard characters.count < 2 else {
return false
}
return Set(characters).count == 1
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment