Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- JS
- OAuth
- Spring Cloud
- Java
- JavaScript
- 유레카
- map
- IntelliJ
- 스프링
- 프로그래머스
- 코딩테스트
- 비동기
- STS
- spring security
- docker
- Spring
- SpringBoot
- 스프링 클라우드
- 자바
- 스프링부트
- jQuery
- 자바스크립트
- map()
- 도커
- date
- leetcode
- GIT
- gitlab
- EUREKA
- spring boot
Archives
- Today
- Total
RATSENO
[Leetcode]Roman to Integer 본문
import java.util.HashMap;
import java.util.Map;
public class RomanToInt {
public static int romanToInt(String s) {
int res = 0;
for (int i = s.length() - 1; i >= 0; i--) {
char c = s.charAt(i);
switch (c) {
case 'I'://1
res += (res >= 5 ? -1 : 1);
break;
case 'V'://5
res += 5;
break;
case 'X'://10
res += 10 * (res >= 50 ? -1 : 1);
break;
case 'L'://50
res += 50;
break;
case 'C'://100
res += 100 * (res >= 500 ? -1 : 1);
break;
case 'D'://500
res += 500;
break;
case 'M'://1000
res += 1000;
break;
}
}
return res;
}
public static void main(String[] args) {
int res = romanToInt("IX");
}
}
'DEV > 코딩테스트 문제풀기' 카테고리의 다른 글
[Leetcode]Valid Parentheses (0) | 2020.03.16 |
---|---|
[Leetcode]Longest Common Prefix (0) | 2020.03.16 |
[Leetcode]Palindrome Number (0) | 2020.03.15 |
[JAVA]프로그래머스(level1) - 정수 제곱근 판별 (0) | 2020.01.06 |
[JAVA]프로그래머스(level1) - 정수 내림차순으로 배치하기 (0) | 2020.01.06 |
Comments