알고리즘/SWEA2023. 8. 14. 19:26[D2] 1204 - 최빈수 구하기

최빈수는 가장 여러 번 나타나는 값을 의미 package SWEA; import java.util.Scanner; public class Solution1204 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int T = sc.nextInt(); for(int test_case=1; test_case

image