https://github.com/lukestorry/primes
Just a small project playing around with finding and checking primes in Pascal.
https://github.com/lukestorry/primes
Last synced: 3 months ago
JSON representation
Just a small project playing around with finding and checking primes in Pascal.
- Host: GitHub
- URL: https://github.com/lukestorry/primes
- Owner: LukeStorry
- License: mit
- Created: 2013-10-27T20:36:22.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2013-10-30T13:40:04.000Z (over 12 years ago)
- Last Synced: 2025-03-05T11:18:36.790Z (over 1 year ago)
- Language: Pascal
- Size: 238 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
#Primes
####Just a small project playing around with finding and checking primes in Pascal.
###Programs so far:
PrimeChecker checks whether a number is prime
SieveOfEratosthenes outputs all primes between 1 and an input limit
FindPrimeFactors finds all the prime factors of a number
Now working on more efficient algorithms for finding primes.