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
"def fact(j):\n\tfor item in primes:\n\t\tc=gcd(item,j)\n\t\tif c != 1 and c != j:\n\t\t\treturn c, j // c\n\treturn 0, 0\ndef prime(n):\n\tif n in primes:\n\t\treturn True\n\treturn False")