LeetCode in Kotlin

419. Battleships in a Board

Medium

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).

Example 1:

Input: board = [[“X”,”.”,”.”,”X”],[”.”,”.”,”.”,”X”],[”.”,”.”,”.”,”X”]]

Output: 2

Example 2:

Input: board = [[”.”]]

Output: 0

Constraints:

Follow up: Could you do it in one-pass, using only O(1) extra memory and without modifying the values board?

Solution

class Solution {
    fun countBattleships(board: Array<CharArray>?): Int {
        if (board == null || board.size == 0) {
            return 0
        }
        var count = 0
        val m = board.size
        val n = board[0].size
        for (i in 0 until m) {
            for (j in 0 until n) {
                if (board[i][j] != '.' && (j <= 0 || board[i][j - 1] != 'X') &&
                    (i <= 0 || board[i - 1][j] != 'X')
                ) {
                    count++
                }
            }
        }
        return count
    }
}
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy