[프로그래머스][완전탐색] 카펫
코드
class Solution {
public int[] solution(int brown, int yellow) {
int[] answer = new int[2];
int total = brown + yellow;
int row = 0;
int col = 0;
for (int i = 1; i <= total; i++) {
row = i;
col = total / i;
if ((row < col) || (total%i != 0) ) {
continue;
}
if ((row-2) * (col-2) == yellow) {
answer[0] = row;
answer[1] = col;
break;
}
}
return answer;
}
}
😌감사합니다😌
Author And Source
이 문제에 관하여([프로그래머스][완전탐색] 카펫), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@mnetkm/프로그래머스완전탐색-카펫저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)