摘要: 辗转相除法求最大公约数(gcd) 最大公约数求最小公倍数(lcm) 埃拉托斯特尼筛法(简称埃式筛法) 204. Count Primes 1 class Solution { 2 public: 3 int countPrimes(int n) { 4 if(n<=2)return 0; 5 vec 阅读全文
posted @ 2021-09-06 15:14 Rekord 阅读(14) 评论(0) 推荐(0) 编辑