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
- Counting
- 자바
- Data Structure
- sorting
- java
- Matrix
- Class
- Method
- Math
- bit manipulation
- 코딩테스트
- 코테
- greedy
- 파이썬
- hash table
- Number Theory
- dynamic programming
- Binary Tree
- database
- Tree
- implement
- Stack
- string
- Binary Search
- array
- geometry
- SQL
- 구현
- two pointers
- simulation
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.0] 5명씩 본문
1. Input, Output, Example
이 놀이기구는 최대 5명이 탑승 가능하며, 탑승 명단이 배열로 주어진다.
- 앞에서 부터 5명씩 묶은 그룹의 가장 앞에 서있는 사람들의 이름을 담은 리스트를 반환
2. Constraint
1) 5 ≤ names의 길이 ≤ 30
2) 1 ≤ names의 원소의 길이 ≤ 10
3) names의 원소는 영어 알파벳 소문자로만 이루어져 있다.
4) 마지막 그룹이 5명이 되지 않더라도 가장 앞에 있는 사람의 이름을 포함한다.
3. Code
1) 첫 코드(2023/05/01)
import java.util.*;
class Solution {
public String[] solution(String[] names) {
ArrayList<String> list = new ArrayList<>();
for(int i=0 ; i<names.length ; i+=5)
list.add(names[i]);
return list.toArray(new String[0]);
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.0] 간단한 논리 연산 (0) | 2023.05.01 |
---|---|
[프로그래머스/Lv.0] 수열과 구간 쿼리 3 (0) | 2023.05.01 |
[프로그래머스/Lv.0] l로 만들기 (0) | 2023.05.01 |
[프로그래머스/Lv.0] 배열 비교하기 (0) | 2023.05.01 |
[프로그래머스/Lv.0] 등차수열의 특정한 항만 더하기 (0) | 2023.05.01 |