Beakjoon&프로그래머스/Java
[프로그래머스/Java] 문자열을 정수로 바꾸기
현장
2025. 2. 23. 15:54
-Code
class Solution {
public int solution(String s) {
return Integer.parseInt(s);
}
}