Skip to content

Commit 6cc7801

Browse files
fixed LGTM
1 parent a4cb629 commit 6cc7801

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
* <p>
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

Comments
 (0)