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 | 31 |
Tags
- 백준
- lv0
- 프로그래머스 자바
- SWEA
- 문자열
- 알고리즘
- index of
- 자바
- 오름차순 정렬
- 프로그래머스
- 큐
- 백준 N과 M 자바
- java
- Programmers
- Lv1
- 스택
- COS Pro
- 삼각형의 완성조건
- Stack
- StringTokenizer
- 이진수 변환
- 스프링부트 도커 배포
- 버퍼
- 스프링부트 도커로 배포
- 프로그래머스 풀이
- 프로그래머스 문자열 정렬
- 클라이언트
- lv2
- 스프링부트 도커
- Queue
Archives
- Today
- Total
mun dev
[COS PRO 1급] 3-1 배열을 회전시켜보세요 자바(Java) 본문
문제링크
문제유형
빈 칸 채우기 문제
문제
class Main {
int[] func_a(int[] arr) {
int length = arr.length;
int[] ret = new int[length*2];
for(int i = 0; i < length; i++)
ret[i + length] = ret[i] = arr[i];
return ret;
}
boolean func_b(int[] first, int[] second){
int[] counter = new int[1001];
for(int i = 0; i < first.length; i++){
counter[first[i]]++;
counter[second[i]]--;
}
for(int i = 0; i < 1001; i++)
if(counter[i] != 0)
return false;
return true;
}
boolean func_c(int[] first, int[] second){
int length = second.length;
for(int i = 0; i < length; i++){
int j;
for(j = 0; j < length; j++)
if(first[i + j] != second[j])
break;
if(j == length)
return true;
}
return false;
}
public boolean solution(int[] arrA, int[] arrB) {
if(arrA.length != arrB.length)
return false;
if(func_(_____)) {
int[] arrAtemp = func_(_____);
if(func_(_____);
return true;
}
return false;
}
}
문제 풀이
class Main {
int[] func_a(int[] arr) {
int length = arr.length;
int[] ret = new int[length*2];
for(int i = 0; i < length; i++)
ret[i + length] = ret[i] = arr[i];
return ret;
}
boolean func_b(int[] first, int[] second){
int[] counter = new int[1001];
for(int i = 0; i < first.length; i++){
counter[first[i]]++;
counter[second[i]]--;
}
for(int i = 0; i < 1001; i++)
if(counter[i] != 0)
return false;
return true;
}
boolean func_c(int[] first, int[] second){
int length = second.length;
for(int i = 0; i < length; i++){
int j;
for(j = 0; j < length; j++)
if(first[i + j] != second[j])
break;
if(j == length)
return true;
}
return false;
}
public boolean solution(int[] arrA, int[] arrB) {
if(arrA.length != arrB.length)
return false;
if(func_b(arrA, arrB)) {
int[] arrAtemp = func_a(arrA);
if(func_c(arrAtemp, arrB))
return true;
}
return false;
}
}
'알고리즘 > COS PRO 1급' 카테고리의 다른 글
[COS PRO 1급] 3-3 비숍으로부터 도망쳐 자바(Java) (0) | 2023.11.28 |
---|---|
[COS PRO 1급] 3-2 팰린드롬 문제 자바(Java) (0) | 2023.11.28 |
[COS PRO 1급] 2-10 0들을 0으로 만들기 자바(Java) (0) | 2023.11.27 |
[COS PRO 1급] 2-9 비밀번호 검사 자바(Java) (0) | 2023.11.27 |
[COS PRO 1급] 2-8 규칙에 맞는 배열 구하기 자바(Java) (0) | 2023.11.27 |