Given two dictionaries
a={'aabb': ['aabb'], 'abcd': ['abcd', 'abce', 'abcf'], 'abbc': ['abbc']}
b={'aabb': 1, 'abcd': 2, 'abbc': 1}
Get the all values from a where thr key has a max value in b
in example :
In b 'abcd' has a max value so we print(['abcd', 'abce', 'abcf'])
Can some one help me with the solution ?
Here is the python code for the question, Please let me know if there are any issues.