Question: Use python to solve it Write a function named num_unique that takes three integers as parameters and that returns the number of unique integers among
Write a function named num_unique that takes three integers as parameters and that returns the number of unique integers among the three. Below are some sample calls and the appropriate value to return. Function call num_unique (18, 3, 4) num_unique (6, 6, 6) num_unique (7, 31, 7) num_unique (2, -2, 1) Value returned 3 1 WN
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
