摘要: 实习面试前再完成100题,争取能匀速解释清楚题 204. Count Primes 素数筛 1 class Solution { 2 public: 3 int countPrimes(int n) { 4 if(n<=2) return 0; 5 n=n-1; 6 vector<int> prim 阅读全文
posted @ 2017-07-11 20:57 miao_a_miao 阅读(185) 评论(0) 推荐(0) 编辑