V26XPLF33PDLLLEZ5LAKN7E4IL2O6SXBMJ7ATFTO7FMRJ4HPIWTAC
XSTNJ6OQCDX6A7FWSKDJMHPJRBS4WXBZ5CDQ22SL7YYTVY5QIWSQC
5LZ5KJVFLJGNO5BUS5KSVWS5JPALSQBAWXSFBVBRXKZ4OTLVMP2QC
for i := 2; i <= limit; i++ {
for i := 2; i <= limit; i += 2 {
// Putting this here makes the function 20% faster, but the sieve // will not contain even numbers. If You need a correct sieve put this // after the sieve handling part (and You can omit the continue)! if i == 2 { i-- continue }
// Putting this here makes the function 20% faster, but the sieve
// will not contain even numbers. If You need a correct sieve put this
// after the sieve handling part (and You can omit the continue)!
if i == 2 {
i--
continue
}