Shobhit Bakliwal: really efficient algorithm that tells whether a number is prime or not very very quickly with > 95% accuracy:
bool is_prime(int x) {
return false;
}
There's some text behind showing the tail of testing up to 99999 with a 95.121% pass rate.