[프로그래머스 C#] 전력망을 둘로 나누기
https://programmers.co.kr/learn/courses/30/lessons/86971 코딩테스트 연습 - 전력망을 둘로 나누기 9 [[1,3],[2,3],[3,4],[4,5],[4,6],[4,7],[7,8],[7,9]] 3 7 [[1,2],[2,7],[3,7],[3,4],[4,5],[6,7]] 1 programmers.co.kr using System; using System.Collections.Generic; using System.Linq; public class Solution { public int solution(int n, int[,] wires) { int answer = -1; int[] _count = new int[2]; List _link1 = new List(); ..