728x90 Euler1 [Python] Q3. Largest prime factor Euler라는 사이트에서는 Python 예제를 많이 다루고 있어요! 저는 그 중에서 3번 문제를 풀어봤습니다. [ Question 3 ] Multiples of 3 and 5 If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23. Find the sum of all the multiples of 3 or 5 below 1000. [ Answer ] def smallest_prime_factor(x): factor = 1 for candidate_factor in range (2,int(x**0.5)+1): if x%candidat.. 2022. 12. 28. 이전 1 다음 728x90