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

Heroku

This site is built on Heroku

Join the ranks of developers at Salesforce, Airbase, DEV, and more who deploy their mission critical applications on Heroku. Sign up today and launch your first app!

Get Started

Top comments (0)

Billboard image

Create up to 10 Postgres Databases on Neon's free plan.

If you're starting a new project, Neon has got your databases covered. No credit cards. No trials. No getting in your way.

Try Neon for Free →

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay