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
- Stack
- SQL
- dynamic programming
- Counting
- string
- geometry
- greedy
- implement
- database
- Data Structure
- Binary Search
- Matrix
- 코테
- Method
- Math
- Binary Tree
- Number Theory
- sorting
- 자바
- two pointers
- hash table
- 코딩테스트
- Tree
- array
- 구현
- Class
- bit manipulation
- java
- simulation
- 파이썬
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.0] 글자 지우기 본문
1. Input, Output, Example
- my_string에서 indices의 원소에 해당하는 인덱스의 글자를 지우고 이어 붙인 문자열을 반환
2. Constraint
1) 1 ≤ indices의 길이 < my_string의 길이 ≤ 100
2) my_string은 영소문자로만 이루어져 있다.
3) 0 ≤ indices의 원소 < my_string의 길이
4) indices의 원소는 모두 서로 다르다.
3. Code
1) 첫 코드(2023/05/01)
import java.util.*;
class Solution {
public String solution(String my_string, int[] indices) {
StringBuilder sb = new StringBuilder();
ArrayList<Integer> list = new ArrayList<>();
for(int i : indices)
list.add(i);
for(int i=0 ; i<my_string.length() ; i++)
if(!list.contains(i))
sb.append(my_string.charAt(i));
return sb.toString();
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.0] 빈 배열에 추가, 삭제하기 (0) | 2023.05.01 |
---|---|
[프로그래머스/Lv.0] 세 개의 구분자 (0) | 2023.05.01 |
[프로그래머스/Lv.0] 배열 만들기 5 (0) | 2023.05.01 |
[프로그래머스/Lv.0] 두 수의 연산값 비교하기 (0) | 2023.05.01 |
[프로그래머스/Lv.0] 1로 만들기 (0) | 2023.05.01 |