Posts by Jimmy • 11 points
1 post
-
0
votes1
answer100
viewsQ: How to remove repeated values from a dictionary?
For example: A = {2:5,4:5,7:8,9:8,11:10} Must return B={11:10} to remove the repeated values.
1 post
0
votes1
answer100
viewsFor example: A = {2:5,4:5,7:8,9:8,11:10} Must return B={11:10} to remove the repeated values.