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
- string
- Number Theory
- array
- hash table
- dynamic programming
- simulation
- Binary Tree
- Stack
- Counting
- java
- 코테
- Math
- Method
- two pointers
- 파이썬
- geometry
- sorting
- Class
- Matrix
- greedy
- bit manipulation
- Tree
- Data Structure
- 자바
- database
- 코딩테스트
- 구현
- Binary Search
- SQL
- implement
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.0] 중복된 문자 제거 본문
1. Input
1) 문자열 my_string
2. Output
1) my_string에서 중복된 문자를 제거하고 하나의 문자만 남긴 문자열
3. Constraint
1) 1 ≤ my_string의 길이 ≤ 110
2) my_string은 영어 대소문자, 공백으로만 구성되어 있다.
3) 대문자와 소문자를 구분한다.
4) 공백(" ")도 하나의 문자로 구분한다.
5) 중복된 문자 중 가장 앞에 있는 문자를 남긴다.
4. Example
Input: my_string=“people”-> Output: “peol”
5. Code
1) 첫 코드(2022/10/27)
String answer = "";
for(int i=0 ; i<my_string.length() ; i++){
char c = my_string.charAt(i);
if(!answer.contains(c+""))
answer += c + "";
}
return answer;
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.0] 컨트롤 제트 (0) | 2022.10.28 |
---|---|
[프로그래머스/Lv.0] 삼각형의 완성조건 (1) (0) | 2022.10.28 |
[프로그래머스/Lv.0] 배열 원소의 길이 (0) | 2022.10.28 |
[프로그래머스/Lv.0] 소인수분해 (0) | 2022.10.27 |
[프로그래머스/Lv.0] 숨어있는 숫자의 덧셈 (1) (0) | 2022.10.27 |