All posts by Rogerup
CodinGame
Improve your programming skills creating game AI’s:
Melhore suas habilidades de programação criando IA’s para jogos:
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;
}
First post.
Today I’m starting my blog.