Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- greedy
- Counting
- database
- two pointers
- Binary Tree
- 자바
- bit manipulation
- hash table
- simulation
- Number Theory
- array
- Stack
- sorting
- Matrix
- Method
- java
- Math
- dynamic programming
- Tree
- 코테
- Data Structure
- string
- geometry
- Class
- 파이썬
- 구현
- Binary Search
- SQL
- 코딩테스트
- implement
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.0] 0 떼기 본문
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);
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.0] 배열 비교하기 (0) | 2023.05.01 |
---|---|
[프로그래머스/Lv.0] 등차수열의 특정한 항만 더하기 (0) | 2023.05.01 |
[프로그래머스/Lv.0] 가까운 1 찾기 (0) | 2023.05.01 |
[프로그래머스/Lv.0] 순서 바꾸기 (0) | 2023.05.01 |
[프로그래머스/Lv.0] 주사위 게임 2 (0) | 2023.05.01 |