Skip to content

Commit fad717b

Browse files
authored
Update seive of eratosthenes(final).cpp
1 parent b3f12f0 commit fad717b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

seive of eratosthenes(final).cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ using namespace std;
9999
bool arr[100000003];
100100
vecl v;
101101

102-
// This is a very efficient seive of eratothenes. Time complexity: O(nloglogn) .
102+
// This is a very efficient seive of eratosthenes. Time complexity: O(nloglogn) .
103103
// Can store 5*10^6 prime numbers below 10^8 on c++14 ideone compiler.
104104

105105
void seive(int n)

0 commit comments

Comments
 (0)