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
- softeer
- SQL
- Dynamic Programming
- C언어
- 자바스크립트
- group by
- Python
- 너비 우선 탐색
- Lv. 1
- SQL 고득점 KIT
- 파이썬
- dfs
- 오블완
- select
- DP
- join
- LEVEL 2
- Java
- 동적계획법
- Lv. 3
- 티스토리챌린지
- Lv. 0
- 프로그래머스
- Lv. 2
- 소프티어
- bfs
- javascript
- level 3
- programmers
- 깊이 우선 탐색
Archives
- Today
- Total
몸과 마음이 건전한 SW 개발자
프로그래머스 [Lv. 2] 숫자 카드 나누기 {언어 : JavaScript} [2024.05.05 수정] 본문
문제 링크
https://school.programmers.co.kr/learn/courses/30/lessons/135807?language=javascript
정답 코드
function solution(arrayA, arrayB) {
const n = arrayA.length;
const gcd = (arr) => {
let dp = Array(n).fill().map(() => 0);
dp[0] = arr[0];
for (let i = 1; i < n; i++) {
let [n1, n2] = [dp[i-1], arr[i]];
while (n1) {
[n1, n2] = [n2%n1, n1];
};
dp[i] = n2;
};
return dp[n-1];
};
const gcdA = gcd(arrayA);
const gcdB = gcd(arrayB);
const isValid = (num, arr) => {
let isNotDevidedUp = true;
for (const a of arr) {
if (a % num == 0) {
isNotDevidedUp = false;
break;
};
};
return isNotDevidedUp
};
const resultA = isValid(gcdA, arrayB) ? gcdA : 0;
const resultB = isValid(gcdB, arrayA) ? gcdB : 0;
const answer = Math.max(resultA, resultB);
return answer;
}
풀이 방법
- 배열 A와 B의 최대공약수를 각각 구한다.
- 구한 최대 공약수를 서로 다른 배열에서 나누어 떨어지는지 확인한다.
- 나누어 떨어진다면 조건에 맞지 않으므로 0으로 바꾼다.
- 구해준 결과값 A와 B 중 최대 값을 answer로 바꾼다.
- answer를 반환한다.
느낀점
- 최대공약수를 구할 수 있으면 쉽게 풀 수 있는 문제
수정내역
- gbc => 최대공약수를 표현했는데 틀렸음
- gbc => gcd로 변경
https://sound-programming.tistory.com/175
'알고리즘' 카테고리의 다른 글
프로그래머스 [Lv. 2] 택배상자 {언어 : JavaScript} (0) | 2024.04.26 |
---|---|
프로그래머스 [Lv. 2] 롤케이크 자르기 {언어 : Python} (0) | 2024.04.25 |
프로그래머스 [Lv. 2] 귤 고르기 {언어 : Python} (0) | 2024.04.23 |
프로그래머스 [Lv. 2] 점 찍기 {언어 : JavaScript} (0) | 2024.04.22 |
프로그래머스 [Lv. 2] 디펜스 게임 {언어 : Python} [반례 포함] (1) | 2024.04.21 |