https://school.programmers.co.kr/learn/courses/30/lessons/42842
문제 설명
Leo는 카펫을 사러 갔다가 아래 그림과 같이 중앙에는 노란색으로 칠해져 있고 테두리 1줄은 갈색으로 칠해져 있는 격자 모양 카펫을 봤습니다.
Leo는 집으로 돌아와서 아까 본 카펫의 노란색과 갈색으로 색칠된 격자의 개수는 기억했지만, 전체 카펫의 크기는 기억하지 못했습니다.
Leo가 본 카펫에서 갈색 격자의 수 brown, 노란색 격자의 수 yellow가 매개변수로 주어질 때 카펫의 가로, 세로 크기를 순서대로 배열에 담아 return 하도록 solution 함수를 작성해주세요.
제한사항
Solution
func solution(brown int, yellow int) []int {
var yWidth = 1
var bWidth int
var bHeight int
for {
if !isValidYellowWidth(yellow, yWidth) {
yWidth++
continue
}
yHeight := yellow / yWidth
bWidth = yWidth + 2
bHeight = yHeight + 2
bArea := bWidth * bHeight
yArea := yWidth * yHeight
if countBrown(bArea, yArea) != brown {
yWidth++
continue
}
if bHeight > bWidth {
yWidth++
continue
}
return []int{bWidth, bHeight}
}
}
func isValidYellowWidth(yellow int, yWidth int) bool {
if yellow%yWidth != 0 {
return false
}
return true
}
func countBrown(bArea int, yArea int) int {
return bArea - yArea
}
[Programmers] Lv.1 내적 (Go) (0) | 2022.12.06 |
---|---|
[Programmers] Lv.1 숫자 문자열과 영단어 (Go) (0) | 2022.12.05 |
[Programmers] Lv.2 피보나치 수 (Go) (0) | 2022.12.03 |
[Programmers] Lv.2 k진수에서 소수 개수 구하기 (Go) (0) | 2022.12.02 |
Regular Expression - 하위 표현식 (0) | 2022.12.02 |
댓글 영역