Skip to content

Instantly share code, notes, and snippets.

@maheshruparel
Forked from brouwerfp/primes.js
Created September 3, 2020 05:21
Show Gist options
  • Save maheshruparel/8f11dd51e683cd3f07b388b8d5d79a16 to your computer and use it in GitHub Desktop.
Save maheshruparel/8f11dd51e683cd3f07b388b8d5d79a16 to your computer and use it in GitHub Desktop.
(s=>{p=[];for(i=2;i<s;i++){for(j=f=0;p[j]*p[j]<=i;j++)f|=!(i%p[j]);f||p.push(i)}return p})(10000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment