Instruction
Fantastic! One more question.
Exercise
You are given two lists for two different phone models. Each list contains the main features of a given phone.
Help a customer decide that phone to choose by creating a function named find_unique_features(set1, set2) which finds unique features for both phones. Return a tuple with these two elements, in this order:
- A set with features unique to phone A.
- A set with features unique to phone B.
Stuck? Here's a hint!
Use the difference() function.



