Search

나머지 구하기

태그
코딩테스트 입문
class Solution { public int solution(int num1, int num2) { return num1 % num2; } }
Java
복사