Project Euler 10 - Summation of Primes
Project Euler 10 - Summation of Primes
Official link: https://projecteuler.net/problem=10
Thought Process
Thought Process
Using my prime generator function, this problem is again trivial. Simply generate all primes < 2,000,000 and sum them
Interactive Code
Interactive Code
Input an integer (yourinput)
Code will output the sum of all primes < yourinput