문제설명
해결방안
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;
}
}
'알고리즘' 카테고리의 다른 글
프로그래머스 C# 숫자 문자열과 영단어 (0) | 2024.06.27 |
---|---|
프로그래머스 C# 시저 암호 (0) | 2024.06.27 |
프로그래머스 C# 크기가 작은 부분 문자 (0) | 2024.06.27 |
프로그래머스 C# 삼총사 (0) | 2024.06.27 |
프로그래머스 C# 이상한 문자 만들기 (0) | 2024.06.25 |