Tag Archives: algorithm

Sigma Geek

[PT] Interessante a ideia dessa nova startup brasileira, conectar empresas com profissionais através de desafios em diversas áreas de TI. Além de tornar esse processo mais divertido e lúdico ainda tem prêmios.

[EN] The idea of this new Brazilian startup is interesting, connecting companies with professionals through challenges in various IT areas. In addition to making this process more fun and playful, there are still prizes.

SigmaGeek

Euclidean algorithm

// Euclidean algorithm – GCD (Greatest Common Divisor)
// Algoritmo de Euclides – MDC (Maior Divisor Comum)

gcd ( a, b )
{
while ( b ≠ 0 )
{
temp = b;
b = a  mod  b;  // remainder of a division
a = temp;
}
return a;
}