본문 바로가기

Coding Test/프로그래머스

[프로그래머스/자바] 두 수의 차

class Solution {
    public int solution(int num1, int num2) {
        return num1-num2;
    }
}