본문 바로가기

problem solving/Project Euler in Haskell

ProjectEuler Problem 3 - Largest prime factor

The prime factors of 13195 are 5, 7, 13 and 29.

What is the largest prime factor of the number 600851475143 ?


A function that returns list of factors:


The largest prime factor of 600851475143 is:


in Python