It's a dictionary named "votes". Now I want a function that can return the key names of the values that have the maximum value. If this is unclear, the function should return
ejected = ["red","cyan"]
since "red" and "cyan" have the biggest values in the dictionary. Can someone help me implement this?
Among Us Voting System: HALP AGAIN
Hi repl.it
Let's say I have the following code:
It's a dictionary named "votes". Now I want a function that can return the key names of the values that have the maximum value. If this is unclear, the function should return
since "red" and "cyan" have the biggest values in the dictionary. Can someone help me implement this?
Thanks in advance!
@heyitsmarcus That's looping through twice:
max
iterates through the entire list, then you iterate through with afor
loop.