Skip to content

Instantly share code, notes, and snippets.

@tolpp
Created February 20, 2015 08:47
Show Gist options
  • Select an option

  • Save tolpp/e897f60cf28734f51231 to your computer and use it in GitHub Desktop.

Select an option

Save tolpp/e897f60cf28734f51231 to your computer and use it in GitHub Desktop.
t ← min{m, n}
while(t > 0) do
if(m mod t = 0 and n mod t = 0)
return t
t ← t - 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment