|
| 1 | +<p>You are given an <code>m x n</code> <code>grid</code>. Each cell of <code>grid</code> represents a street. The street of <code>grid[i][j]</code> can be:</p> |
| 2 | + |
| 3 | +<ul> |
| 4 | + <li><code>1</code> which means a street connecting the left cell and the right cell.</li> |
| 5 | + <li><code>2</code> which means a street connecting the upper cell and the lower cell.</li> |
| 6 | + <li><code>3</code> which means a street connecting the left cell and the lower cell.</li> |
| 7 | + <li><code>4</code> which means a street connecting the right cell and the lower cell.</li> |
| 8 | + <li><code>5</code> which means a street connecting the left cell and the upper cell.</li> |
| 9 | + <li><code>6</code> which means a street connecting the right cell and the upper cell.</li> |
| 10 | +</ul> |
| 11 | +<img alt="" src="https://assets.leetcode.com/uploads/2020/03/05/main.png" style="width: 450px; height: 708px;" /> |
| 12 | +<p>You will initially start at the street of the upper-left cell <code>(0, 0)</code>. A valid path in the grid is a path that starts from the upper left cell <code>(0, 0)</code> and ends at the bottom-right cell <code>(m - 1, n - 1)</code>. <strong>The path should only follow the streets</strong>.</p> |
| 13 | + |
| 14 | +<p><strong>Notice</strong> that you are <strong>not allowed</strong> to change any street.</p> |
| 15 | + |
| 16 | +<p>Return <code>true</code><em> if there is a valid path in the grid or </em><code>false</code><em> otherwise</em>.</p> |
| 17 | + |
| 18 | +<p> </p> |
| 19 | +<p><strong class="example">Example 1:</strong></p> |
| 20 | +<img alt="" src="https://assets.leetcode.com/uploads/2020/03/05/e1.png" style="width: 455px; height: 311px;" /> |
| 21 | +<pre> |
| 22 | +<strong>Input:</strong> grid = [[2,4,3],[6,5,2]] |
| 23 | +<strong>Output:</strong> true |
| 24 | +<strong>Explanation:</strong> As shown you can start at cell (0, 0) and visit all the cells of the grid to reach (m - 1, n - 1). |
| 25 | +</pre> |
| 26 | + |
| 27 | +<p><strong class="example">Example 2:</strong></p> |
| 28 | +<img alt="" src="https://assets.leetcode.com/uploads/2020/03/05/e2.png" style="width: 455px; height: 293px;" /> |
| 29 | +<pre> |
| 30 | +<strong>Input:</strong> grid = [[1,2,1],[1,2,1]] |
| 31 | +<strong>Output:</strong> false |
| 32 | +<strong>Explanation:</strong> As shown you the street at cell (0, 0) is not connected with any street of any other cell and you will get stuck at cell (0, 0) |
| 33 | +</pre> |
| 34 | + |
| 35 | +<p><strong class="example">Example 3:</strong></p> |
| 36 | + |
| 37 | +<pre> |
| 38 | +<strong>Input:</strong> grid = [[1,1,2]] |
| 39 | +<strong>Output:</strong> false |
| 40 | +<strong>Explanation:</strong> You will get stuck at cell (0, 1) and you cannot reach cell (0, 2). |
| 41 | +</pre> |
| 42 | + |
| 43 | +<p> </p> |
| 44 | +<p><strong>Constraints:</strong></p> |
| 45 | + |
| 46 | +<ul> |
| 47 | + <li><code>m == grid.length</code></li> |
| 48 | + <li><code>n == grid[i].length</code></li> |
| 49 | + <li><code>1 <= m, n <= 300</code></li> |
| 50 | + <li><code>1 <= grid[i][j] <= 6</code></li> |
| 51 | +</ul> |
0 commit comments