//utility fn to find number is prime or not in most optimised way
bool isPrime(int n){
if(n<=1){
return false;
}
if(n<=3){
return true;
}
if(n%2==0 || n%3==0){
return false;
}
for(int i=5;i*i<=n;i+=6){
if(n%i==0 || n%(i+2)==0){
return false;
}
}
return true;
}
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter