Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- Git
- programmers
- 더현대서울 맛집
- Baekjoon
- gs25
- 캐치카페
- github
- 프로그래머스 파이썬
- 파이썬
- 백준
- 코로나19
- 금융문자분석경진대회
- 자연어처리
- PYTHON
- 데이콘
- 프로그래머스
- Real or Not? NLP with Disaster Tweets
- Kaggle
- 편스토랑 우승상품
- 우분투
- Docker
- ChatGPT
- 편스토랑
- leetcode
- hackerrank
- ubuntu
- AI 경진대회
- 맥북
- dacon
- SW Expert Academy
Archives
- Today
- Total
솜씨좋은장씨
[leetCode] 204. Count Primes (Python) 본문
728x90
반응형
Count the number of prime numbers less than a non-negative number, n.
Example:
Input: 10
Output: 4
Explanation: There are 4 prime numbers less than 10, they are 2, 3, 5, 7.
Solution
class Solution:
def getPrimaryNum_Eratos(N):
nums = [True] * (N + 1)
for i in range(2, len(nums) // 2 + 1):
if nums[i] == True:
for j in range(i+i, N, i):
nums[j] = False
return [i for i in range(2, N) if nums[i] == True]
def countPrimes(self, n: int) -> int:
prime_nums = Solution.getPrimaryNum_Eratos(n)
return len(prime_nums)
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[leetCode] 344. Reverse String (Python) (0) | 2020.06.08 |
---|---|
[leetCode] 326. Power of Three (Python) (0) | 2020.06.07 |
[leetCode] 29. Divide Two Integers (Python) (2) | 2020.06.05 |
[leetCode] 46. Permutations (Python) (0) | 2020.06.04 |
[leetCode] 75. Sort Colors (Python) (2) | 2020.06.03 |
Comments