프로그래머스LV1 - 문자열을 정수로 바꾸기

Kong-al·2022년 9월 29일
0

프로그래머스LV1 - 문자열을 정수로 바꾸기

[ 답안 ]

class Solution {
  public int solution(String s) {
      return Integer.parseInt(s);
  }
}
profile
웹개발 공부중!(❁´◡`❁)

0개의 댓글