본문 바로가기
Computer/Algorithm_Java

[Algorithm_Java] 문자열을 정수로 바꾸기 (Success)

by HJ0216 2023. 10. 28.
 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

 

Language: Java

1
2
3
4
5
6
7
8
class Solution {
    public int solution(String s) {
        int answer = 0;
        answer = Integer.parseInt(s);
        return answer;
    }
}
 

* parseInt

 

1
2
3
4
5
6
7
8
class Solution {
    public int solution(String s) {
        int answer = 0;
        answer = Integer.valueOf(s);
        return answer;
    }
}
 

* valueOf

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class Solution {
    public int solution(String s) {
        int answer = 0;
        for(int i=0; i<s.length(); i++){
            if(s.charAt(i) >= 48 && s.charAt(i) <= 57){
                answer += s.charAt(i)-48;
                if(i==s.length()-1break;
                answer *= 10;                
            }
        }
        if(s.charAt(0)=='-') answer *=-1;
        return answer;
    }
}
 

* 알고리즘

 

1
2
3
4
5
6
7
8
9
10
11
12
13
class Solution {
    public int solution(String s) {
        int answer = 0;
        for(int i=0; i<s.length(); i++){
            if(s.charAt(i) >= 48 && s.charAt(i) <= 57){
                answer = answer*10 + s.charAt(i)-48;
            }
        }
        if(s.charAt(0)=='-') answer *=-1;
        return answer;
    }
}
 

* 알고리즘

    - *10 위치 조정 및 if 조건문 제거

 

 

 

🔗 소스 코드
GitHub

 

📚 참고 자료

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr