https://school.programmers.co.kr/learn/courses/30/lessons/181936
풀이
더보기
이건 이 문제랑 비슷한건데
https://itstudy-mary.tistory.com/554
근데 여기서 조건문에 and(&&) 조건문을 걸어 n의 배수와 m의 배수 양쪽 다 성립하도록 하면 된다.
class Solution {
fun solution(number: Int, n: Int, m: Int): Int {
return if(number % n == 0 && number % m == 0) {
1
} else {
0
}
}
}
반응형
'스터디(programmers)' 카테고리의 다른 글
Kotlin] 프로그래머스 lv.0, 두 수의 차 (0) | 2023.06.21 |
---|---|
Kotlin] 프로그래머스 lv.0, 두 수의 곱 (0) | 2023.06.21 |
Kotlin] 프로그래머스 lv.0, n의 배수 (0) | 2023.06.19 |
Kotlin] 프로그래머스 lv.0, 두 수의 연산값 비교하기 (0) | 2023.06.16 |
Kotlin] 프로그래머스 lv.0, 더 크게 합치기 (0) | 2023.06.15 |