Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Simplify primality test #153

Open
bkalcho opened this issue Apr 18, 2023 · 0 comments
Open

Simplify primality test #153

bkalcho opened this issue Apr 18, 2023 · 0 comments

Comments

@bkalcho
Copy link

bkalcho commented Apr 18, 2023

Think this primality test should be simplified. You may use the following algorithm:

// 2 is a special case of prime, and if n < 2 then skip it. For others see bellow
if n > 2 {
  for i := 2; i <= i/2; i++ {
    if n % i == 0 {
       break
      //It's not a prime
    }
  }
  // It's a prime
}

I am referring to the simplification of the following part of the code:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant