반응형
https://programmers.co.kr/learn/courses/30/lessons/12940
글쓴이의 답
개인적인 풀이 임으로
이것보다 더 좋은 알고리즘은 많음...
이렇게도 풀이하는구나.. 공유하기 위해 올림...
#include <string>
#include <vector>
using namespace std;
vector<int> solution(int n, int m) {
vector<int> answer;
int check1 = n;
int check2 = m;
while(check2 > 0){
int temp = check1;
check1 = check2;
check2 = temp % check2;
}
answer.push_back(check1);
answer.push_back((n*m)/check1);
return answer;
}
꾸준히 하다보면 실력이 늘겠지..
반응형
'코딩테스트' 카테고리의 다른 글
[프로그래머스][C] 평균 구하기 (0) | 2022.03.20 |
---|---|
[프로그래머스][C++] 콜라츠 추측 (0) | 2022.03.20 |
[프로그래머스][C] 짝수와 홀수 (0) | 2022.03.20 |
[프로그래머스][C++] 제일 작은 수 제거하기 (0) | 2022.03.20 |
[프로그래머스][C++] 정수 제곱근 판별 (0) | 2022.03.19 |