BOJ / 2178번 / 미로 탐색 [Go][Python3]
👩🏻💻 문제 2178번: 미로 탐색 첫째 줄에 두 정수 N, M(2 ≤ N, M ≤ 100)이 주어진다. 다음 N개의 줄에는 M개의 정수로 미로가 주어진다. 각각의 수들은 붙어서 입력으로 주어진다. www.acmicpc.net ✍🏻 풀이 🎨 Go // https://www.acmicpc.net/problem/2178 package main import ( "bufio" "fmt" "os" "strings" ) var ( graph [][]string count [][]int rowDiff = []int{0, 0, -1, 1} colDiff = []int{-1, 1, 0, 0} ) func main() { reader := bufio.NewReader(os.Stdin) writer := bufio.New..
dev/algorithm
2021. 1. 3. 21:00