Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Algorithm
- 변수
- greedy
- hash table
- 컴포넌트
- Python
- 알고리즘
- 코딩테스트
- computed
- dynamic programming
- JavaScript
- math
- 자료구조
- java
- 자료형
- string
- leetcode
- CSS
- HTML
- JS
- scss
- github
- SasS
- 파이썬
- sorting
- 프로그래머스
- 백준
- JavaSceipt
- array
- vue.js
Archives
- Today
- Total
Posis
[프로그래머스] 약수 구하기 본문
문제 링크
https://school.programmers.co.kr/learn/courses/30/lessons/120897
문제 설명
정수 n이 매개변수로 주어질 때, n의 약수를 오름차순으로 담은 배열을 return하도록 solution 함수를 완성해주세요.
제한사항
- 1 ≤ n ≤ 10,000
입출력 예
n | result |
24 | [1, 2, 3, 4, 6, 8, 12, 24] |
29 | [1, 29] |
입출력 예 설명
입출력 예 #1
- 24의 약수를 오름차순으로 담은 배열 [1, 2, 3, 4, 6, 8, 12, 24]를 return합니다.
입출력 예 #2
- 29의 약수를 오름차순으로 담은 배열 [1, 29]를 return합니다.
나의 풀이
Java
class Solution {
public int[] solution(int n) {
int count = 0;
for(int i = 1; i <= n; i++) {
if(n%i == 0) count++;
}
int[] answer = new int[count];
for(int i = 1, j = 0; i <= n; i++) {
if(n%i == 0) {
answer[j] = i;
j++;
}
}
return answer;
}
}
JavaScript
function solution(n) {
let answer = [];
for(let i = 1; i <= n; i++) {
if(n%i == 0) answer.push(i);
}
return answer;
}
728x90
'알고리즘 > 프로그래머스' 카테고리의 다른 글
[프로그래머스] 피자 나눠 먹기 (2) (0) | 2022.12.05 |
---|---|
[프로그래머스] 주사위의 개수 (0) | 2022.12.05 |
[프로그래머스] n의 배수 고르기 (0) | 2022.12.05 |
[프로그래머스] 가장 큰 수 찾기 (0) | 2022.12.05 |
[프로그래머스] 대문자와 소문자 (0) | 2022.12.05 |