Created
February 12, 2014 13:06
-
-
Save anonymous/8955235 to your computer and use it in GitHub Desktop.
Localytics Coding Challenge - Tufts Sci Fair - 2/12/2014
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? | |
# | |
# Email answers to [email protected] with subject "Localytics Coding Challenge - Tufts" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment