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
- 스프링
- 오라클
- kotlin
- Java
- 코틀린
- 에러
- 자바
- IntelliJ
- 함수
- GitHub
- Vue
- Git
- aws
- db
- error
- jquery
- 넥사크로
- oracle
- 생성
- Eclipse
- 시큐리티
- JPA
- JavaScript
- 프로그래머스
- mybatis
- 쿼리
- Spring
- 방법
- Security
- 알고리즘
Archives
- Today
- Total
송민준의 개발노트
프로그래머스-level1-최대공약수와 최소공배수 본문
https://programmers.co.kr/learn/courses/30/lessons/12940
최대공약수와 최소 공배수를 구하는 문제이다.
GCD 유클리드 호제법을 적용해서 해결한 문제이다.
https://terms.naver.com/entry.nhn?docId=2073670&cid=47324&categoryId=47324
네이버 백과 참고
class Solution {
public int[] solution(int n, int m) {
if(n > m) {
int temp = n;
n = m;
m = temp;
}
int[] answer = new int[2];
answer[0] = gcd(n, m);
answer[1] = n*m/answer[0];
return answer;
}
public static int gcd(int a, int b) {
while( b != 0) {
int temp = a%b;
a = b;
b = temp;
}
return Math.abs(a);
}
}
'알고리즘 > 프로그래머스' 카테고리의 다른 글
프로그래머스-level1-하샤드 수 (0) | 2019.11.20 |
---|---|
프로그래머스-level1-짝수와 홀수 (0) | 2019.11.20 |
프로그래머스-level1-평균 구하기 (0) | 2019.11.20 |
프로그래머스-level1-제일 작은 수 제거하기 (0) | 2019.11.18 |
프로그래머스-level1-정수 제곱근 판별 (0) | 2019.11.18 |