To install & configure github, please read the followings :
If you are using Windows, don't forget the $ git config --global core.autocrlf true to avoid Windows trailing line endings.
And then... Let's CLONE !
To install & configure github, please read the followings :
If you are using Windows, don't forget the $ git config --global core.autocrlf true to avoid Windows trailing line endings.
And then... Let's CLONE !
| /* | |
| * Max DeLiso <maxdeliso@gmail.com> | |
| * | |
| * Purpose: compute prime numbers using a Sieve of Atkin | |
| * | |
| * Runtime efficiency: O(N/log log N) | |
| * | |
| * Memory efficiency: N/8 bytes | |
| * | |
| * Input: Limiting value n, [1,n-1] will be computed and outputted. |