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
- dynamic programming
- Class
- java
- Number Theory
- 자바
- SQL
- sorting
- Math
- Data Structure
- Binary Tree
- Counting
- Stack
- 구현
- Binary Search
- implement
- 코테
- hash table
- array
- string
- Matrix
- 코딩테스트
- 파이썬
- simulation
- database
- geometry
- Tree
- greedy
- bit manipulation
- Method
- two pointers
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.0] n개 간격의 원소들 본문
1. Input, Output, Example
- num_list의 첫 번째 원소부터 마지막 원소까지 n개 간격으로 저장되어있는 원소들을 차례로 담은 리스트를 반환
2. Constraint
1) 5 ≤ num_list의 길이 ≤ 20
2) 1 ≤ num_list의 원소 ≤ 9
3) 1 ≤ n ≤ 4
3. Code
1) 첫 코드(2023/04/24)
class Solution {
public int[] solution(int[] num_list, int n) {
int len = num_list.length%n==0 ? num_list.length/n : num_list.length/n+1;
int[] a = new int[len];
for(int i=0 ; i<a.length ; i++)
a[i] = num_list[n*i];
return a;
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.0] 코드 처리하기 (0) | 2023.04.25 |
---|---|
[프로그래머스/Lv.0] 9로 나눈 나머지 (0) | 2023.04.25 |
[프로그래머스/Lv.0] 문자열 섞기 (0) | 2023.04.24 |
[프로그래머스/Lv.0] 특정한 문자를 대문자로 바꾸기 (0) | 2023.04.24 |
[프로그래머스/Lv.0] 문자열 돌리기 (0) | 2023.04.24 |