Skip to content

Instantly share code, notes, and snippets.

@artistwhocodes
Created June 20, 2019 02:09
Show Gist options
  • Save artistwhocodes/aa2c76653142221c5b3782c392eb6158 to your computer and use it in GitHub Desktop.
Save artistwhocodes/aa2c76653142221c5b3782c392eb6158 to your computer and use it in GitHub Desktop.
question = ["Name", "Age", "Location", "Color"]
answer = ["Pam", "?", "Hogwarts", "green"]
infor_section = question.zip(answer).to_h
# => {"Name"=>"Pam", "Age"=>"?", "Location"=>"Hogwarts", "Color"=>"green"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment