RomanToInteger

    [LeetCode] Roman to Integer

    오느릐 문제. 로마 숫자를 정수형태로 바꿔보기. leetcode.com/problems/roman-to-integer/ Roman to Integer - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 아래는 처음에 푼 방식. 제대로 작동하기는 했으나 속도도 느리고.. 음.. public class cote0312_13_RomanToInteger { public int romanToInt(String s) { //s의 길이를 알아야겠징 int[] iArr=new ..