We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4cb629 commit 6cc7801Copy full SHA for 6cc7801
src/main/java/com/examplehub/projecteuler/Problem10.java
@@ -0,0 +1,14 @@
1
+package com.examplehub.projecteuler;
2
+
3
+/**
4
+ * The sum of the primes below 10 is 2 + 3 + 5 + 7 = 17.
5
+ * <p>
6
+ * Find the sum of all the primes below two million.
7
8
+ * link: https://projecteuler.net/problem=10
9
+ */
10
+public class Problem10 {
11
+ public static long solution1(int n) {
12
+ long sum = 0;
13
+ }
14
+}
0 commit comments