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
- Binary Search
- 자바
- implement
- dynamic programming
- Binary Tree
- simulation
- Data Structure
- geometry
- Tree
- 파이썬
- Number Theory
- 구현
- Method
- SQL
- Counting
- two pointers
- java
- Class
- hash table
- database
- Matrix
- array
- Stack
- 코테
- 코딩테스트
- sorting
- bit manipulation
- Math
- greedy
- string
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.0] 특정 문자 제거하기 본문
1. Input
1) 문자열 my_string
2) 문자열 letter
2. Output
1) my_string에서 letter를 제거한 문자열
3. Constraint
1) 1 <= my_string의 길이 <= 100
2) letter은 길이가 1인 영문자
3) my_string과 letter은 알파벳 대소문자로 이루어져 있다.
4) 대소문자 구분
4. Example
Input: my_string="BCBdbe", letter="B" -> Output: "Cdbe"
5. Code
1) 첫 코드(2022/10/21)
for(int i=0 ; i<my_string.length() ; i++){
if((my_string.charAt(i)+"").equals(letter)){
my_string = my_string.substring(0,i) + my_string.substring(i+1,my_string.length());
i--; // i번째 다시 확인해야함
}
}
return my_string;
2) 가장 간결했던 코드(2022/10/21)
return my_string.replaceAll(letter,"");
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.0] 양꼬치 (0) | 2022.10.21 |
---|---|
[프로그래머스/Lv.0] 각도기 (0) | 2022.10.21 |
[프로그래머스/Lv.0] 문자 반복 출력하기 (0) | 2022.10.21 |
[프로그래머스/Lv.0] 짝수 홀수 개수 (0) | 2022.10.21 |
[프로그래머스/Lv.0] 직각삼각형 출력하기 (0) | 2022.10.21 |