首页 > 代码库 > 204. Count Primes
204. Count Primes
Description:
Count the number of prime numbers less than a non-negative number, n.
刷了一周的python, 希望明天把blackjack和最后的游戏做出来。
思路:
比较巧妙,用inner loop从头开始mark不是prime的位置,然后输出false的个数。
public class Solution { public int countPrimes(int n) { boolean[] check=new boolean[n]; int count=0; for(int i=2;i<n;i++) { if(check[i]==false) { count++; } for(int j=2;i*j<n;j++) { check[i*j]=true; } } return count;}}
204. Count Primes
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。