프로그래머스(Level 0) - 🐽 문자열을 정수로 변환하기

Gammi·2023년 5월 2일
0

프로그래머스

목록 보기
60/69

✔ 문제






✔ 해결


class Solution {
  public int solution(String n_str) {
    int answer = Integer.parseInt(n_str);
    return answer;
  }
}
profile
개발자가 되었어요⭐️

0개의 댓글