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
- SQL
- 코딩테스트
- geometry
- Number Theory
- Class
- string
- database
- hash table
- Binary Search
- 코테
- java
- Binary Tree
- bit manipulation
- simulation
- 파이썬
- Tree
- Method
- Data Structure
- implement
- two pointers
- 자바
- 구현
- greedy
- array
- Counting
- Stack
- sorting
- dynamic programming
- Math
- Matrix
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.0] 세 개의 구분자 본문
1. Input, Output, Example
- 문자열 myStr이 주어졌을 때 "a", "b", "c"를 사용해 나눠진 문자열을 순서대로 저장한 배열을 반환
- 단, 두 구분자 사이에 다른 문자가 없을 경우에는 아무것도 저장하지 않으며, 반환할 배열이 빈 배열이라면 ["EMPTY"]를 반환
2. Constraint
1) 1 ≤ myStr의 길이 ≤ 1,000,000
2) myStr은 알파벳 소문자로 이루어진 문자열이다.
3. Code
1) 첫 코드(2023/05/01)
import java.util.*;
class Solution {
public String[] solution(String myStr) {
String[] s = myStr.split("[abc]+");
ArrayList<String> list = new ArrayList<>();
for(String str : s)
if(!str.equals(""))
list.add(str);
return list.size()==0 ? new String[] {"EMPTY"} : list.toArray(new String[0]);
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.0] 문자열이 몇 번 등장하는지 세기 (0) | 2023.05.01 |
---|---|
[프로그래머스/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 |