코린이의 소소한 공부노트

[프로그래머스/Lv.0] 0 떼기 본문

코딩테스트 풀이/JAVA

[프로그래머스/Lv.0] 0 떼기

무지맘 2023. 5. 1. 14:07

1. Input, Output, Example

- n_str의 가장 왼쪽에 처음으로 등장하는 0들을 뗀 문자열을 반환

 

2. Constraint

1) 2 n_str 10

2) n_str"0"으로만 이루어진 경우는 없다.

 

3. Code

1) 첫 코드(2023/05/01)

class Solution {
    public String solution(String n_str) {
        int i = 0;
        while(n_str.charAt(i)=='0')
            i++;
        return n_str.substring(i);
    }
}