write a method named numunique that accepts three integers as parameters and that returns the number of unique integers among the three. for example, the call numunique(18, 3, 4) should return 3 because the parameters have 3 different values. by contrast, the call numunique(6, 7, 6) would return 2 because there are only 2 unique numbers among the three parameters: 6 and 7. compare your solution to your neighbors'. did you all solve it the same way?