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
- array
- simulation
- database
- java
- string
- 파이썬
- greedy
- Binary Tree
- Number Theory
- Tree
- bit manipulation
- two pointers
- dynamic programming
- Class
- Method
- Stack
- Counting
- implement
- 코딩테스트
- Math
- Data Structure
- geometry
- Binary Search
- sorting
- 자바
- hash table
- SQL
- 구현
- Matrix
- 코테
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.0] 배열 회전시키기 본문
1. Input
1) 정수가 담긴 배열 numbers
2) 문자열 direction
2. Output
1) numbers의 원소를 direction방향으로 한 칸씩 회전시킨 배열
3. Constraint
1) 3 <= numbers의 길이 <= 20
2) direction은 "left" 와 "right" 둘 중 하나
4. Example
Input: numbers={1,2,3}, direction=“right” -> Output: {3,1,2}
5. Code
1) 첫 코드(2022/10/25)
if(direction.equals("right")){
int last = numbers[numbers.length-1];
for(int i=numbers.length-1 ; i>0 ; i--)
numbers[i] = numbers[i-1];
numbers[0] = last;
}
else{
int first = numbers[0];
for(int i=0 ; i<numbers.length-1 ; i++)
numbers[i] = numbers[i+1];
numbers[numbers.length-1] = first;
}
return numbers;
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.0] 합성수 찾기 (0) | 2022.10.26 |
---|---|
[프로그래머스/Lv.0] 주사위의 개수 (0) | 2022.10.26 |
[프로그래머스/Lv.0] 공 던지기 (0) | 2022.10.25 |
[프로그래머스/Lv.0] 2차원으로 만들기 (0) | 2022.10.25 |
[프로그래머스/Lv.0] 점의 위치 구하기 (0) | 2022.10.25 |