728x90
answer = [0, 0, 0, 0]
def solution(wallpaper):
x, y = [], []
for i in range(len(wallpaper)):
for j in range(len(wallpaper[i])):
if wallpaper[i][j] == "#":
y.append(i)
x.append(j)
lux = min(y)
luy = min(x)
rdx = max(y) + 1
rdy = max(x) + 1
answer = [lux, luy, rdx, rdy]
return answer
728x90
'코딩테스트 > Python' 카테고리의 다른 글
프로그래머스 스쿨 - JadenCase 문자열 만들기(Python)(복습) (0) | 2023.10.07 |
---|---|
프로그래머스 스쿨 - 신고 결과 받기(Python)(복습) (0) | 2023.10.06 |
프로그래머스 스쿨 - 달리기 경주(Python)(복습) (0) | 2023.10.04 |
프로그래머스 스쿨 - 공원 산책(Python)(복습) (0) | 2023.10.03 |
프로그래머스 스쿨 - 개인정보 수집 유효기간(Python)(복습) (0) | 2023.10.02 |