Grokking Oracle Coding Interview
Ask Author
Back to course home

0% completed

Vote For New Content
Is this a typo? Shouldn't it be Island Perimeter instead of Parameter?

Jacob Song

Jul 21, 2022

Is this a typo? Shouldn't it be Island Perimeter instead of Parameter?

0

0

Comments
Comments
Design Gurus
Design Gurus3 years ago

Yes, it should have been the perimeter. Thanks for pointing that out. We fixed it.

L
logan 3 years ago

What does b/w mean in this code snippet: if (x < 0 || x >= matrix.length || y < 0 || y >= matrix[0].length) return 1; // returning 1, since this a boundary cell initiated this DFS call if (matrix[x][y] == 0) return 1; // returning 1, because of the shared side b/w a wat...

J
J 3 years ago

The diagram image still has that spelling typo.

Design Gurus
Design Gurus3 years ago

Fixed.

'b/w' stands for 'between'.

On this page