Laptop Recommendation CodeChef Solution | CodeChef Problem Solution 2022
Chef wants to buy a new laptop. However, he is confused about which laptop to buy out of different laptops. He asks his friends for their recommendation. The friend recommends the Chef to buy the laptop .
Chef will buy the laptop which is recommended by maximum number of friends. Determine which laptop Chef buys.
Print CONFUSED
if there are multiple laptops having maximum number of recommendations.
Input Format
- The first line contains a single integer - the number of test cases. Then the test cases follow.
- The first line of each test case contains an integer - the number of Chef's friends.
- The second line of each test case contains space-separated integers where denotes the recommendation of the friend.
Output Format
For each test case, output in a single line, the laptop which has the maximum number of recommendations. Print CONFUSED
if there are multiple laptops having maximum number of recommendations.
You may print each character of CONFUSED
in uppercase or lowercase (for example, Confused
, coNFused
, CONFused
will be considered identical).
Constraints
Sample Input 1
4
5
4 4 4 2 1
7
1 2 3 4 5 6 6
6
2 2 3 3 10 8
4
7 7 8 8
Sample Output 1
4
6
CONFUSED
CONFUSED
Explanation
Test case 1: Laptop has the maximum number of recommendations. Therefore, Chef will buy the laptop.
Test case 2: Laptop has the maximum number of recommendations. Therefore, Chef will buy the laptop.
Test case 3: Laptops , have the maximum number of recommendations. Therefore, Chef will still be CONFUSED
.
Test case 4: Laptops , have the maximum number of recommendations. Therefore, Chef will still be CONFUSED
.
Join Now for Solution:-
No comments:
Post a Comment