This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def it(n) | |
x = [*2..n] | |
x.each do |i| | |
[*(i+1)..n].each { |j| x.delete(j) if (j%i).zero? } | |
end | |
end | |
# 1) what does it do? | |
# 2) how fast is it? | |
# 3) can you make it faster? |