[프로그래머스,Level 1] 문자열을 정수로 바꾸기(JAVA 구현)
·
CodingTest/프로그래머스(Programmers)
- 첫 풀이 처음에는 문자열로 받은 숫자를 charAt() 메서드를 이용해 하나하나 파싱 하여 정수로 변환하려는 과정을 시도했다. (바보 같다.) class Solution { public int solution(String s) { int answer = 0; int num = 1000; for(int i=0;i