Skip to content

Instantly share code, notes, and snippets.

View gciruelos's full-sized avatar

Gonzalo Ciruelos gciruelos

View GitHub Profile
@gciruelos
gciruelos / gcd.h
Last active December 18, 2015 18:08 — forked from jsharf/gcd.h
int gcd(int a, int b)
{
return (a%b==0)?b:gcd(b,a%b); //Jacob
}
int gcd2(int a, int b)
{
//iterative version
int temp;
while (a)