백준 / 유기농 배추 / 1012번 / Python
·
코딩테스트(프로그래머스 & 백준)/백준-Python
*문제 출처는 백준에 있습니다. 문제 제목: 유기농 배추 / 1012번 (실버 2단계) 문제 사이트: https://www.acmicpc.net/problem/1012 문제 설명 나의 풀이 from collections import deque# 테스트 케이스T = int(input())def earthworm(napa_cabbage, visit, m, n): answer = 0 # 상하좌우로 움직이기 move = [(0, 1), (0, -1), (1, 0), (-1, 0)] for i in range(n): for j in range(m): if not visit[i][j] and napa_cabbage[i][j] == 1: ..
김치바보
'1012번' 태그의 글 목록