Skip to content

Instantly share code, notes, and snippets.

View SandSnip3r's full-sized avatar

Victor Stone SandSnip3r

  • Google
  • Sunnyvale, CA
  • 23:48 (UTC -07:00)
View GitHub Profile
#include <atomic>
#include <cmath>
#include <iostream>
#include <thread>
#include <vector>
using namespace std;
bool isPrime(uint64_t num) {
if (num < 2) {