<p>You are given an <code>m x n</code> binary matrix <code>grid</code>, where <code>0</code> represents a sea cell and <code>1</code> represents a land cell.</p>
<p>A <strong>move</strong> consists of walking from one land cell to another adjacent (<strong>4-directionally</strong>) land cell or walking off the boundary of the <code>grid</code>.</p>
<p>Return <em>the number of land cells in</em><code>grid</code><em>for which we cannot walk off the boundary of the grid in any number of <strong>moves</strong></em>.</p>