mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-13 05:53:53 +01:00
13 lines
289 B
Plaintext
13 lines
289 B
Plaintext
function GCD(num1, num2) {
|
|
if(num1 * num2 == 0) return 0;
|
|
|
|
if (num2 == 0) return num1;
|
|
else return GCD(num2, num1 % num2);
|
|
}
|
|
|
|
function GCDs(num1, num2) {
|
|
if(num1 == num2) return 0;
|
|
if(num1 % num2 == 0) return num2;
|
|
if(num2 % num1 == 0) return num1;
|
|
return 0;
|
|
} |