Santa Banta | Graph | Sieve of Eratosthenes| GFG Practice | Dry Run & Explanation

แชร์
ฝัง
  • เผยแพร่เมื่อ 22 ธ.ค. 2024

ความคิดเห็น • 1

  • @Veom03
    @Veom03  15 วันที่ผ่านมา

    CODE:
    class Solution{
    public:
    vector prime;
    void precompute(){ //Sieve Of Eratosthenes
    vector isPrime(1e6+10,true);
    isPrime[0] = false;
    isPrime[1] = false;
    for(int i=2;i