https://school.programmers.co.kr/learn/courses/30/lessons/250125
def solution(board, h, w):
n=len(board)
count = 0
dh=[0,1,-1,0]
dw=[1,0,0,-1]
for i in range(4):
h_check=h+dh[i]
w_check=w+dw[i]
if (h_check >=0 and h_check<n) and (w_check>=0 and w_check<n):
if board[h][w]==board[h_check][w_check]:
count+=1
return count
'코딩테스트 > 프로그래머스' 카테고리의 다른 글
PYTHON 프로그래머스)달리기 경주 (0) | 2024.05.27 |
---|---|
PYTHON 프로그래머스)[PCCE 기출문제] 10번 / 데이터 분석 (0) | 2024.05.27 |
Python 프로그래머스) [PCCP 기출문제] 1번 / 붕대 감기 (0) | 2024.05.27 |
Python 프로그래머스) 성격 유형 검사하기 (0) | 2024.05.14 |
Python 프로그래머스) 가장 많이 받은 선물(2024 KAKAO WINTER INTERSHIP) (0) | 2024.05.11 |