Programming Homework Help
Boston College Function Unique Values Project
Get Your Custom Essay Written From Scratch
We have worked on a similar problem. If you need help click order now button and submit your assignment instructions.
Just from $13/Page
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