Count the Planes (Medium)

Good morning! Here's our prompt for today.

You may see this problem at Citadel, Coinbase, Walmart Labs, Gusto, Appian, and Anaplan.

Assume that we are building software to determine how many planes are in the sky.

Description

The data that we have on planes currently in the air comes in the form of a grid, modeled by a matrix array. See below:

SNIPPET
1[
2  ['.', '.', '.', 'P'],
3  ['.', '.', '.', 'P'],
4  ['P', 'P', '.', 'P'],
5  ['.', '.', '.', 'P']
6]

Within that matrix, the dots (.s) represent available airspace. The Ps that are neighboring each other model one plane each. So in the above example, there are exactly 2 planes.

Given a multi-dimensional array of .s and Ps exclusively, can you find the number of planes that there are in the sky? Planes may only be placed horizontally or vertically. A diagonal plane like this would not count as one plane. Instead, there will be 3 separate planes.

SNIPPET
1[
2  ['.', '.', 'P'],
3  ['.', 'P', '.'],
4  ['P', '.', '.']
5]

Could you accomplish this in one pass?

SNIPPET
1sky = [
2  ['.', '.', '.', 'P'],
3  ['.', '.', '.', 'P'],
4  ['P', 'P', '.', 'P'],
5  ['.', '.', '.', 'P']
6]
7
8numOfPlanes(sky);
9// 2

Constraints

  • Total number of elements in the matrix <= 100000
  • The elements will consist only of . and P characters
  • The matrix can be empty
  • Expected time complexity : O(n * m) where n and m are number of rows and columns respectively
  • Expected space complexity : O(1)
JAVASCRIPT
OUTPUT
Results will appear here.