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

박의진·2022년 9월 10일
0

코딩테스트

목록 보기
12/25
post-custom-banner
class Solution {
    public int solution(String s) {
        int answer = 0;
        String[] str = s.split("");
        
        if(str[0].equals("-"))
            answer =  - Integer.parseInt(s.substring(1,s.length()));
        else
            answer =  Integer.parseInt(s);
        return answer;
    }
}
profile
주니어 개발자의 개발일지

0개의 댓글