Skip to content

Instantly share code, notes, and snippets.

@gillchristian
Created October 11, 2022 16:20
Show Gist options
  • Save gillchristian/6159a3c7d077c0ec8bb2179459fa6ad6 to your computer and use it in GitHub Desktop.
Save gillchristian/6159a3c7d077c0ec8bb2179459fa6ad6 to your computer and use it in GitHub Desktop.
fn get_factor(x: i64) -> usize {
fn go(n: usize, x: i64) -> usize {
let x = x / 10;
if x >= 10 {
go(n + 1, x)
} else {
n + 1
}
}
go(0, x)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment