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
- Number Theory
- hash table
- Binary Tree
- Math
- sorting
- geometry
- Stack
- bit manipulation
- Matrix
- 코딩테스트
- implement
- 자바
- array
- database
- Class
- 코테
- simulation
- string
- greedy
- SQL
- Binary Search
- 파이썬
- Counting
- Tree
- Method
- two pointers
- dynamic programming
- 구현
- java
- Data Structure
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.0] 왼쪽 오른쪽 본문
1. Input, Output, Example
- str_list에서 "l"과 "r" 중 먼저 나오는 문자열이 "l"이라면 해당 문자열을 기준으로 왼쪽에 있는 문자열들을 순서대로 담은 리스트를, 먼저 나오는 문자열이 "r"이라면 해당 문자열을 기준으로 오른쪽에 있는 문자열들을 순서대로 담은 리스트를 반환
- "l"이나 "r"이 없다면 빈 리스트를 반환
2. Constraint
1) 1 ≤ str_list의 길이 ≤ 20
2) str_list는 "u", "d", "l", "r" 네 개의 문자열로 이루어져 있다.
3. Code
1) 첫 코드(2023/04/27)
import java.util.*;
class Solution {
public String[] solution(String[] str_list) {
int index = -1;
String s = "";
for(int i=0 ; i<str_list.length ; i++)
if(str_list[i].equals("l") || str_list[i].equals("r")){
s = str_list[i]; index = i; break;
}
String[] answer;
if(index==-1)
answer = new String[0];
else if(s.equals("l"))
answer = Arrays.copyOfRange(str_list, 0, index);
else
answer = Arrays.copyOfRange(str_list, index+1, str_list.length);
return answer;
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.0] 배열 만들기 4 (0) | 2023.04.27 |
---|---|
[프로그래머스/Lv.0] qr code (0) | 2023.04.27 |
[프로그래머스/Lv.0] 간단한 식 계산하기 (0) | 2023.04.27 |
[프로그래머스/Lv.0] 배열의 원소만큼 추가하기 (0) | 2023.04.27 |
[프로그래머스/Lv.0] 접미사 배열 (0) | 2023.04.27 |