You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
return (lambda gcd: (lambda ans: -1 if ans == math.inf else ans)(min((i if gcd % n == 0 else math.inf) for i, n in enumerate(sorted(nums)))))(functools.reduce(math.gcd, numsDivide, numsDivide[0]))