class Solution { public int solution(int number, int n, int m) { if(number%n==0 && number%m==0){ return 1; }else { return 0; } } }
if 조건문으로도 간단히 쉽게 풀었지만 다른 사람들의 풀이가 더 깔끔하다! 나도 노력해야지 좋은 코드로 코딩할 수 있게