0 떼기 Lv. 0

박영준·2023년 6월 1일
0

코딩테스트

목록 보기
196/300
class Solution {
    public String solution(String n_str) {
        String answer = "";
        return answer;
    }
}


해결법

방법 1

class Solution {
    public String solution(String n_str) {
        return Integer.parseInt(n_str) + "";
    }
}
  • Integer.parseInt()

    • Integer.parseInt() 은 0을 사라지게 한다.

      Integer.parseInt("023")		// 실행 결과 : 23
      
      /*
      '0' -> result = (result * 10) + 0  ->  result =  0
      '2' -> result = (result * 10) + 2  ->  result = 2
      '3' -> result = (result * 10) + 3  ->  result = 23
      */

      참고: 타입 및 형변환


참고: parseInt가 0을 제외하는 이유


0 떼기 Lv. 0

profile
개발자로 거듭나기!

0개의 댓글