728x90
반응형
class Solution {
public int solution(String s) {
return (!s.contains("-")) ? Integer.parseInt(s) : Integer.parseInt(s.substring(1,s.length()))*-1;
}
}
contains 함수로 음수 판별을 하고, 삼항 연산자로 끝내버렸따...
728x90
728x90
'알고리즘' 카테고리의 다른 글
java] 회문 문자열 체크(팰린드롬) (0) | 2021.09.06 |
---|---|
java]문자열에서 가장 긴 단어 찾기 (0) | 2021.09.02 |
문자열 내림차순으로 배치하기 (0) | 2020.11.01 |
자릿수 더하기 (0) | 2020.10.21 |
수박수박수박수박수박수? (1) | 2020.10.20 |
댓글