N의 배수
https://school.programmers.co.kr/learn/courses/30/lessons/181937
- 문제 풀이
1
2
3
4
5
class Solution {
public int solution(int num, int n) {
return (num % n == 0) ? 1 : 0;
}
}
이 기사는 저작권자의 CC BY 4.0 라이센스를 따릅니다.
https://school.programmers.co.kr/learn/courses/30/lessons/181937
1
2
3
4
5
class Solution {
public int solution(int num, int n) {
return (num % n == 0) ? 1 : 0;
}
}