Question: 
Write a function to add two lists using map and lambda function.


Model's Code:
def add_list(list1, list2):
    return list(map(lambda x, y: x + y, list1, list2))



Sample Correct Code:
def add_list(nums1,nums2):
  result = map(lambda x, y: x + y, nums1, nums2)
  return list(result)


Asserts:
assert add_list([1, 2, 3],[4,5,6])==[5, 7, 9]
assert add_list([1,2],[3,4])==[4,6]
assert add_list([10,20],[50,70])==[60,90]


Tests:
Test 1 of 3: PASS
Test 2 of 3: PASS
Test 3 of 3: PASS

Test 729 of 974: 551/729 (75.58299039780522%): success