Skip to content

Instantly share code, notes, and snippets.

@Banck
Created November 9, 2017 13:51
Show Gist options
  • Save Banck/40805c09360c36d359f467d7400db66e to your computer and use it in GitHub Desktop.
Save Banck/40805c09360c36d359f467d7400db66e to your computer and use it in GitHub Desktop.
func IntToReversedArrayOfInts (_ b:Int)->(arr:[Int],count:Int){
let str = String(number)
var digits = str.flatMap{Int(String($0))}
digits = digits.reversed()
return (digits,digits.count)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment