https://leetcode.com/problems/roman-to-integer/description Q. 주진 로마 문자를 숫자로 변환하라. Solution이 문제는 1씩 모자라는 숫자들에 대해 특별 처리가 필요하며, 그것을 제외하면 특별한 내용은 없다. 더보기 public int RomanToInt(string s) { Dictionary dictValue = new Dictionary(); dictValue.Add("I", 1); dictValue.Add("V", 5); dictValue.Add("X", 10); dictValue.Add("L", 50); dictValue.Add("C", 100); dictValue.Add("D", 500); dic..