← Back to Games

⚔️ Array GCD Arena

Compute running GCD across an array - pairs battle to find the champion!

📊 Array Elements
Current GCD
-
⚔️
Next Element
-
New GCD
?
🏆 Array GCD Champion
1
📜 Battle Log

📚 GCD of an Array

To find the GCD of multiple numbers, use the associative property:

GCD(a, b, c) = GCD(GCD(a, b), c)

Process the array left to right, computing running GCD at each step. The final result divides ALL elements in the array!