Skip to content

Commit

Permalink
Solves issue noisefilter19#1077. Solution to the problem Count Primes…
Browse files Browse the repository at this point in the history
…(204) in Python.
  • Loading branch information
tejasvicsr1 committed Oct 18, 2021
1 parent 8a05f86 commit 759e63c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Python/204_Count_Primes.py → Python/Count_Primes.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# https://leetcode.com/problems/count-primes/

class Solution:
def countPrimes(self, n: int) -> int:
prime = [True for i in range(n+1)]

0 comments on commit 759e63c

Please sign in to comment.