BFS 문제. 프로그래머스 C# 버전 문제로 튜플 사용 방법을 신경써야한다using System;using System.Collections;using System.Collections.Generic;public class Solution { public int solution(string[] maps){ int answer = 0; int startToLever = 0; int leverToExit = 0; //Tuple startPos = new Tuple(0,0); //Tuple leverPos = new Tuple(0, 0); //Tuple exitPos = new Tuple(0, 0); (int x, int y) startPos = (0, 0); (in..