/**
* @param {character[][]} grid
* @return {number}
*/
var numIslands = function(grid) { let count = 0 for(let i = 0; i < grid.length; i++){ for(let j = 0; j < grid[0].length; j++){ if(grid [i][j] === '1'){ count++ dfs(i, j, grid) } } } return count };
function inBound(min, value, max){ return min < value && value < max }
const directions =[ [-1, 0], [0, 1], [1, 0], [0, -1] ]
function dfs(row, col, grid){ if(!inBound(-1, row, grid.length) || !inBound(-1, col, grid[0].length) || grid[row][col] ==='0' ){ return } grid[row][col] ='0' for (let [dirRow, dirCol] of directions){ const newRow = row + dirRow const newCol = col + dirCol dfs(newRow, newCol, grid) } }
bfs(grid, startRow, startCol) { const queue = [] queue.push([startRow, startCol]) while (0 < queue.length) { const [row, col] = queue.shift() for (const [dirRow, dirCol] of this.directions) { const newRow = dirRow + row const newCol = dirCol + col if ( this.inBound(-1, newRow, grid.length) && this.inBound(-1, newCol, grid[0].length) && grid[newRow][newCol] === '1' ) { grid[newRow][newCol] = '0' queue.push([newRow, newCol]) } } } }
It's like:
Written by Anonymous User
/**
* @param {character[][]} grid
* @return {number}
*/
It's like: