Skip to content

Instantly share code, notes, and snippets.

@jancel
Last active January 12, 2024 18:30
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 jancel/884196 to your computer and use it in GitHub Desktop.
Save jancel/884196 to your computer and use it in GitHub Desktop.
def fizzbuzz( number, index = 1 )
# Do this in one pass
value = ""
value += "fizz" if (index % 3 == 0)
value += "buzz" if (index % 5 == 0)
p value
# and next number
fizzbuzz( number, index + 1 )
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment