blob: 359c185f20fe19e5c5eaeca1df950484f30b1d27 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# sieve of Eratosthenes
max = Integer(ARGV.shift || 100)
sieve = []
for i in 2 .. max
sieve[i] = i
end
for i in 2 .. Math.sqrt(max)
next unless sieve[i]
(i*i).step(max, i) do |j|
sieve[j] = nil
end
end
puts sieve.compact.join ", "
|