반응형
문제
https://school.programmers.co.kr/learn/courses/30/lessons/42842
문제 풀이
가능한 모든 경우의 노란 직사각형 모양을 검사함.
yw, yh를 구해서 그 넓이를 둘러싼 길이가 brown과 같으면 True 리턴.
코드
def solution(brown, yellow):
res = []
for yw in range(1, yellow+1):
yh = yellow/yw
if yh%1!=0 and yw*yh!=yellow:
continue
if (yw+yh+4)*2-4 == brown:
res = [yw+2, yh+2]
return sorted(res, reverse=True)
반응형
'알고리즘 > 프로그래머스 문제풀이' 카테고리의 다른 글
[프로그래머스] lv.2 구명보트 풀이 (1) | 2023.11.19 |
---|---|
[프로그래머스] lv.2 영어 끝말잇기 풀이 (2) | 2023.11.19 |
[프로그래머스] lv.2 짝지어 제거하기 풀이 (1) | 2023.11.19 |
[프로그래머스] lv.2 자동차 평균 대여 기간 구하기 sql 풀이 (0) | 2023.11.19 |
[프로그래머스] lv.2 다음 큰 숫자 풀이 (0) | 2023.11.19 |