DEV Community

SalahElhossiny
SalahElhossiny

Posted on

1 1

Battleships in a Board Count

Given an m x n matrix board where each cell is a battleship 'X' or empty '.', return the number of the battleships on board.

Battleships can only be placed horizontally or vertically on board. In other words, they can only be made of the shape 1 x k (1 row, k columns) or k x 1 (k rows, 1 column), where k can be of any size. At least one horizontal or vertical cell separates between two battleships (i.e., there are no adjacent battleships).

var countBattleships = function(board) {

    if (board === null || board.length === 0 || board[0].length == 0 ) 
        return 0;

    let res = 0;

    const m = board.length;
    const n = board[0].length;

    for(let i = 0; i < m; i++) {
        for (let j = 0; j < n; j++) {
            if (board[i][j] === '.' 
                || 
                    (i > 0 && board[i - 1][j] === 'X') 
                || 
                    (j > 0 && board[i][j - 1] === 'X')
               ) 
                continue;
            res++;
        }
    }

    return res;
};



Enter fullscreen mode Exit fullscreen mode

Top comments (0)

πŸ‘‹ Kindness is contagious

Dive into an ocean of knowledge with this thought-provoking post, revered deeply within the supportive DEV Community. Developers of all levels are welcome to join and enhance our collective intelligence.

Saying a simple "thank you" can brighten someone's day. Share your gratitude in the comments below!

On DEV, sharing ideas eases our path and fortifies our community connections. Found this helpful? Sending a quick thanks to the author can be profoundly valued.

Okay