Search Results

2
votes

Is there a simple algorithm that can determine if X is prime, and not confuse a mere mortal programmer?

For reasonably small numbers, x%n for up to sqrt(x) is awfully fast and easy to code. Simple improvements: test 2 and odd numbers only. test 2, 3, and multiples of 6 + or …