Programming Homework Help

Boston College Function Unique Values Project

 

Write a function unique_values(d) that takes in a dictionary and
returns all unique values (not keys) in dictionary d. The function returns None if there is no
unique value in d.

d={ a:1, b:1, c:2, d:5}

should return 2,5