<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>
<ul>
<li><code>1</code> which means a street connecting the left cell and the right cell.</li>
<li><code>2</code> which means a street connecting the upper cell and the lower cell.</li>
<li><code>3</code> which means a street connecting the left cell and the lower cell.</li>
<li><code>4</code> which means a street connecting the right cell and the lower cell.</li>
<li><code>5</code> which means a street connecting the left cell and the upper cell.</li>
<li><code>6</code> which means a street connecting the right cell and the upper cell.</li>
<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>
<p><strong>Notice</strong> that you are <strong>not allowed</strong> to change any street.</p>
<p>Return <code>true</code><em> if there is a valid path in the grid or </em><code>false</code><em> otherwise</em>.</p>
<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)