728x90
https://school.programmers.co.kr/learn/courses/30/lessons/86491
소스코드
using System;
public class Solution
{
public int solution(int[,] sizes)
{
int maxWidth = 0;
int maxHeight = 0;
for (int i = 0; i < sizes.GetLength(0); i++)
{
int width = Math.Max(sizes[i, 0], sizes[i, 1]);
int height = Math.Min(sizes[i, 0], sizes[i, 1]);
if (maxWidth < width)
maxWidth = width;
if (maxHeight < height)
maxHeight = height;
}
return maxWidth * maxHeight;
}
}
728x90
'코딩공부 > 프로그래머스' 카테고리의 다른 글
[프로그래머스]Lv.1 숫자 문자열과 영단어 C# (0) | 2023.06.15 |
---|---|
[프로그래머스]Lv.1 없는 숫자 더하기 C#(Except, Sum) (0) | 2023.06.15 |
[프로그래머스]Lv.1 나머지가 1이 되는 수 찾기 C# (0) | 2023.06.15 |
※[프로그래머스]Lv.1 신고 결과 받기 C# (0) | 2023.06.15 |
※[프로그래머스]Lv.1 성격 유형 검사하기 C# (0) | 2023.06.14 |