Skip to content

Instantly share code, notes, and snippets.

@pom421
Created May 18, 2019 16:14
Show Gist options
  • Save pom421/ad455426c40613cf4bad434a7594a07e to your computer and use it in GitHub Desktop.
Save pom421/ad455426c40613cf4bad434a7594a07e to your computer and use it in GitHub Desktop.
# gcd
def gcd(a: Int, b: Int): Int = if (b == 0) a else gcd(b, a % b)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment