Created
February 20, 2015 21:39
-
-
Save MichaelCPell/6e6aef29916790e0e0a8 to your computer and use it in GitHub Desktop.
Fixed up Syntax
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 hash_to_array(h ={}) | |
a = [] | |
h.each do |key, value| | |
a << key + value | |
end | |
a | |
end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment