글
프로그래머스 C# 종이 자르기(JAVA)
프로그래밍
2023. 1. 19. 14:50
728x90
SMALL
using System;
public class Solution {
public int solution(int M, int N) {
return M*N-1;
}
}
// 계산해보니까 자르는 숫자가 MN-1이다.
자바
class Solution {
public int solution(int m, int n) {
return m * n - 1;
}
}
728x90
'프로그래밍' 카테고리의 다른 글
프로그래머스 C# 로그인 성공(GetLength, 이중배열, JAVA) (0) | 2023.01.19 |
---|---|
프로그래머스 C# 캐릭터의 좌표(범위 아웃 설정, JAVA) (0) | 2023.01.19 |
프로그래머스 C# 문자열 계산하기(string split, break, P, J) (0) | 2023.01.03 |
프로그래머스 C# 외계어 사전(replace, for, if문, P, J) (0) | 2023.01.03 |
프로그래머스 C# 영어가 싫어요(string과 replace, long.Parse, P, J) (0) | 2023.01.02 |