Skip to content

Instantly share code, notes, and snippets.

@LVMBDV
Last active February 23, 2018 17:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LVMBDV/21e77ccd111ffa1d831c7bd5ebe60abd to your computer and use it in GitHub Desktop.
Save LVMBDV/21e77ccd111ffa1d831c7bd5ebe60abd to your computer and use it in GitHub Desktop.
sum, x, y, z = 0, 1, 2, 3
while z <= 4000000
z = x + y
x = y
y = z
sum += z if z.divisible_by? 2
end
puts sum
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment