본문 바로가기
알고리즘

프로그래머스] 문자열을 정수로 바꾸기

by 완기 2021. 4. 16.
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

댓글