Created
April 14, 2014 19:03
-
-
Save anonymous/10674787 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
factor = [] | |
array = [2, 4, 5, 7, 11, 10] | |
array.each{|x| | |
y = 2 | |
while y < x | |
if x % y == 0 | |
factor << y | |
end | |
y = y +1 | |
end | |
if factor.length != 0 | |
array[x] = 0 | |
end | |
} | |
puts factor |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment