Mark As Completed Discussion

Good morning! Here's our prompt for today.

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)

Try to solve this here or in Interactive Mode.

How do I practice this challenge?

JAVASCRIPT
OUTPUT
:001 > Cmd/Ctrl-Enter to run, Cmd/Ctrl-/ to comment

Here's a video of us explaining the solution.

To change the speed of the video or see it in full screen, click the icons to the right of the progress bar.

Here's our guided, illustrated walk-through.

How do I use this guide?