Summer-the-coder

Results 1 comments of Summer-the-coder

Yes (it's FPE instead of SEGV, but it's still "undefined behavior sanitizer"): ```cpp #include bool isPrime(int n) { if (n < 2) { return false; } if (n < 4)...