Problem 2

Largest prime factor

Problem 4

Largest prime factor

Problem 3

The prime factors of 13195 are 5, 7, 13 and 29.
What is the largest prime factor of the number 600851475143 ?
from tools import factor


def run(limit=600851475143):
    return max(list(factor(limit)))