Created
September 18, 2012 04:46
-
-
Save sirpengi/3741310 to your computer and use it in GitHub Desktop.
ruby woe
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
fib = Generator.new { |fib| | |
a = 0 | |
b = 1 | |
while true | |
fib.yield b | |
a, b = b, a + b | |
end | |
} | |
fib.take_while { |i| i < 4000000 }.select { |i| i.even? }.inject(0, :+) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment