Compute running GCD across an array - pairs battle to find the champion!
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!