Ruby - Hashes
Given this array of keys and values:
Which code correctly creates a hash with symbol and string keys from these arrays?
keys = [:a, "b", :c] values = [1, 2, 3]
Which code correctly creates a hash with symbol and string keys from these arrays?
