import sys
sys.stdin = open("input.txt","r")
T = int(input())
for test_case in range(1,T+1):
test_num = int(input())
case = list(map(int, input().split()))
grade_count = [0]*101 #인덱스가 점수
max = 0
score = 0
for i in range(len(case)):
grade_count[case[i]] += 1
for k in range(len(grade_count)):
if (max <=grade_count[k]):
max = grade_count[k]
score = k
print("#"+str(test_case)+ " "+ str(score))
'Algorithm > SWEA' 카테고리의 다른 글
[SWEA / python] 1961. 숫자 배열 회전 (0) | 2023.07.16 |
---|---|
[SWEA / python] 1959. 두 개의 숫자열 (0) | 2023.07.15 |
[SWEA / python] 1984. 중간 평균값 구하기 (0) | 2023.05.20 |
[SWEA / python] 1859. 백만 장자 프로젝트 (0) | 2023.05.20 |
[SWEA / python] 1545. 거꾸로 출력해 보아요 (0) | 2023.05.11 |