Skip to content

Commit bf241b0

Browse files
adds details in leetcode#204
1 parent ec89a8a commit bf241b0

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Diff for: src/CountPrimes.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// https://leetcode.com/problems/count-primes
2+
// T: O(n log(log(n)))
3+
// S: O(n)
4+
15
public class CountPrimes {
26

37
public static int countPrimes(int number) {

0 commit comments

Comments
 (0)