class Solution {
    public int solution(String s) {
        return Integer.parseInt(s);
    }
}

 

문자열을 Integer형으로 바꾸는 문제이다.

Integer.paserInt() 내장함수를 사용하면 쉽게 풀 수 있다.