You are given two lists, keys and values, of the same length.
Return a dictionary that maps each keys[i] to the corresponding values[i] for every index i.
If both lists are empty, return an empty dictionary {}. You may assume the keys are all distinct.
NOTE: This is a function-type question — you only write the function. Do not read input or print anything; a hidden checker calls your function and checks its return value.
Arguments
['a', 'b', 'c']
[1, 2, 3]
Returns
{'a': 1, 'b': 2, 'c': 3}