종이 자르기 Lv. 0

박영준·2023년 7월 13일
0

코딩테스트

목록 보기
285/300
class Solution {
    public int solution(int M, int N) {
        int answer = 0;
        return answer;
    }
}

해결법

방법 1

class Solution {
    public int solution(int M, int N) {
        return M * N - 1;
    }
}

예시를 보고 규칙을 발견해내자.


종이 자르기 Lv. 0

profile
개발자로 거듭나기!

0개의 댓글