n의 배수

Psj·5일 전
0

내 풀이

class Solution {
    public int solution(int num, int n) {
        int answer = num%n == 0 ? 1 : 0;
        return answer;
    }
}
profile
Software Developer

0개의 댓글