[프로그래머스] 순위 / JAVA
문제링크 : https://programmers.co.kr/learn/courses/30/lessons/49191 코딩테스트 연습 - 순위 5 [[4, 3], [4, 2], [3, 2], [1, 2], [2, 5]] 2 programmers.co.kr class Solution { public static int solution(int n, int[][] results) { int answer = 0; boolean isConnected[][] = new boolean[n+1][n+1]; for(int i=0;i