Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 생성
- 오라클
- IntelliJ
- Java
- Eclipse
- JavaScript
- 넥사크로
- 자바
- GitHub
- jquery
- error
- oracle
- Security
- 스프링
- 방법
- 함수
- 코틀린
- 쿼리
- db
- 프로그래머스
- 에러
- JPA
- 시큐리티
- Vue
- Spring
- 알고리즘
- mybatis
- kotlin
- aws
- Git
Archives
- Today
- Total
송민준의 개발노트
프로그래머스-level1-나누어 떨어지는 숫자 배열 본문
https://programmers.co.kr/learn/courses/30/lessons/12910
나의 코드
Arrays.sort를 활용해서 정렬을 먼저 하였고
divisor로 나누어떨어지는 것을 배열에 저장하였다.
최종적으로 값이 0이 아닌 값들은 제외하고 배열을 새로 만들어 반환함.
나누어지는게 하나도 없는 경우는 boolean을 활용해서 -1 반환.
import java.util.Arrays;
class Solution {
public int[] solution(int[] arr, int divisor) {
int[] answer = new int[arr.length];
boolean check = false;
Arrays.sort(arr);
int cnt = 0;
for(int i=0; i< arr.length; i++) {
if(arr[i]%divisor == 0) {
check = true;
answer[cnt] = arr[i];
cnt++;
}
}
int length = 0;
for(int i =0; i < answer.length; i++) {
if(answer[i] == 0) {
break;
}
length++;
}
if(check == false) {
return new int[] {-1};
}
return Arrays.copyOfRange(answer, 0, length);
}
}
참고할 코드
한줄이면 된다..
Arrays.stream에 대해서 공부가 필요할듯!
'알고리즘 > 프로그래머스' 카테고리의 다른 글
프로그래머스-level1-실패율 (0) | 2019.11.04 |
---|---|
프로그래머스-level1-약수의 합 (0) | 2019.11.04 |
프로그래머스-level1-소수 찾기(에라토스테네스의 체) (0) | 2019.11.04 |
프로그래머스-level1-모의고사 (0) | 2019.11.03 |
프로그래머스-level1-시저 암호 (0) | 2019.11.01 |