🍪https://www.acmicpc.net/problem/20125 내 풀이def heart(): for i in range(N): for j in range(N): if cookie[i][j] == '*': return i + 2, j + 1 def left(x, y): count = 0 while y >= 0 and cookie[x][y] == '*': count += 1 y -= 1 return countdef right(x, y): count = 0 while y 코드 설명def heart(): for i in range(N): for..