코트카타18) 문자열을 정수로 바꾸기나의 풀이class Solution { public int solution(String s) { int answer = 0; answer = Integer.parseInt(s); return answer; }}복잡하게 생각하려다 함수를 써버렸다... 다른 분들의 풀이public class StrToInt { public int getStrToInt(String str) { boolean Sign = true; int result = 0; for (int i = 0; i 출처:https://school.programmers.co.kr/learn/courses/30/les..