Question: Please solve it by Python Write a function mutual_friends(list1,list2) that takes two lists of friends and returns the number of friends in common. Use sets.
Please solve it by Python
Write a function mutual_friends(list1,list2) that takes two lists of friends and returns the number of friends in common. Use sets. Your problem should behave as follows:
>>> mutual_friends(["Bob","Joe"],["Esmerelda"])
0
>>> mutual_friends(["Bob","Joe"],["Bob","Joe"])
2
>>> mutual_friends(["Bob","Joe"],["Bob","Joe","Keitha"])
2
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
