
나의 풀이 using System; public class Solution { public string solution(string[] id_pw, string[,] db) { bool isCorrectId = false; bool isCorrectPw = false; string answer = string.Empty; // id 검사 , Pw 검사 for(int i = 0; i < db.GetLength(0); i++){ if(id_pw[0] == db[i,0]) isCorrectId = true; if(id_pw[1] == db[i,1]) isCorrectPw = true; } if(isCorrectId == true){ if(isCorrectPw == true) answer = "login"; e..