CINTA作業7

class Solution { public: int countPrimes(int n) { if(n<=1) return 0; int count=0; int sqrt_n=sqrt(n); bool flag[n]={0}; // set all the elements in the array to 0.
相關文章
相關標籤/搜索