Skip to content

Instantly share code, notes, and snippets.

@shootacean
Created February 16, 2019 14:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shootacean/bf8e3ea57e6a1659210d1a62a15936e7 to your computer and use it in GitHub Desktop.
Save shootacean/bf8e3ea57e6a1659210d1a62a15936e7 to your computer and use it in GitHub Desktop.
func gcd(a, b int) int {
if b == 0 {
return a
}
return gcd(b, a%b)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment