Skip to content

Instantly share code, notes, and snippets.

@orez-
Created November 12, 2025 16:34
Show Gist options
  • Select an option

  • Save orez-/246565d6c25b88578be98a7bebb19eef to your computer and use it in GitHub Desktop.

Select an option

Save orez-/246565d6c25b88578be98a7bebb19eef to your computer and use it in GitHub Desktop.
Sick of looking up GCD algo and translating to Rust
fn gcd(a: i32, b: i32) -> i32 {
if b == 0 {
return a;
}
gcd(b, a % b)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment