Added solution for problem 10

This commit is contained in:
2018-09-26 12:33:13 -04:00
parent 316835bd60
commit ddae03b64e

6
ProjectEuler/Problem10.m Normal file
View File

@@ -0,0 +1,6 @@
%ProjectEuler/Problem10.m
%This is a script to answer Problem 10 for Project Euler
%Find the sum of all the primes below two million.
%Print the answer
sum(primes(2000000))