- Notifications
You must be signed in to change notification settings - Fork98
Max area of island#39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Merged
Uh oh!
There was an error while loading.Please reload this page.
Merged
Changes fromall commits
Commits
Show all changes
3 commits Select commitHold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Jump to file
Failed to load files.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
52 changes: 52 additions & 0 deletionsLeetcodeProblems/Max_Area_Of_Island.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
/* | ||
Max Area of Island | ||
Given a non-empty 2D array grid of 0's and 1's, an island is a group of 1's (representing land) connected 4-directionally (horizontal or vertical.) You may assume all four edges of the grid are surrounded by water. | ||
Find the maximum area of an island in the given 2D array. (If there is no island, the maximum area is 0.) | ||
Example 1: | ||
[[0,0,1,0,0,0,0,1,0,0,0,0,0], | ||
[0,0,0,0,0,0,0,1,1,1,0,0,0], | ||
[0,1,1,0,1,0,0,0,0,0,0,0,0], | ||
[0,1,0,0,1,1,0,0,1,0,1,0,0], | ||
[0,1,0,0,1,1,0,0,1,1,1,0,0], | ||
[0,0,0,0,0,0,0,0,0,0,1,0,0], | ||
[0,0,0,0,0,0,0,1,1,1,0,0,0], | ||
[0,0,0,0,0,0,0,1,1,0,0,0,0]] | ||
Given the above grid, return 6. Note the answer is not 11, because the island must be connected 4-directionally. | ||
Example 2: | ||
[[0,0,0,0,0,0,0,0]] | ||
Given the above grid, return 0. | ||
Note: The length of each dimension in the given grid does not exceed 50. | ||
*/ | ||
/** | ||
* @param {number[][]} grid | ||
* @return {number} | ||
*/ | ||
var maxAreaOfIsland = function(grid) { | ||
var maxArea = 0; | ||
for(var i = 0; i < grid.length; i++) { | ||
for(var j = 0; j < grid[0].length; j++) { | ||
maxArea = Math.max(markIsland(i, j, grid), maxArea); | ||
} | ||
} | ||
return maxArea; | ||
}; | ||
var markIsland = function(row, col, grid) { | ||
if(row < 0 || row >= grid.length || col < 0 || col >= grid[0].length || grid[row][col] == 0) { | ||
return 0; | ||
} | ||
grid[row][col] = 0; | ||
return 1 + markIsland(row + 1, col, grid) + markIsland(row - 1, col, grid) | ||
+ markIsland(row, col +1, grid) + markIsland(row, col - 1, grid); | ||
} | ||
module.exports.maxAreaOfIsland = maxAreaOfIsland; |
51 changes: 51 additions & 0 deletionsLeetcodeProblemsTests/Max_Area_Of_Island_Test.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
const assert = require('assert'); | ||
const { maxAreaOfIsland } = require('../LeetcodeProblems/Max_Area_Of_Island'); | ||
function test1() { | ||
var matrix = [ | ||
[0,0,1,0,0,0,0,1,0,0,0,0,0], | ||
[0,0,0,0,0,0,0,1,1,1,0,0,0], | ||
[0,1,1,0,1,0,0,0,0,0,0,0,0], | ||
[0,1,0,0,1,1,0,0,1,0,1,0,0], | ||
[0,1,0,0,1,1,0,0,1,1,1,0,0], | ||
[0,0,0,0,0,0,0,0,0,0,1,0,0], | ||
[0,0,0,0,0,0,0,1,1,1,0,0,0], | ||
[0,0,0,0,0,0,0,1,1,0,0,0,0] | ||
] | ||
assert.strictEqual(maxAreaOfIsland(matrix), 6); | ||
} | ||
function test2() { | ||
var matrix = [ | ||
[0, 1, 1, 0, 0], | ||
[0, 1, 1, 0, 0], | ||
[0, 0, 1, 0, 1], | ||
[0, 1, 0, 0, 1], | ||
[0, 1, 1, 0, 1], | ||
[0, 0, 0, 0, 0], | ||
] | ||
assert.strictEqual(maxAreaOfIsland(matrix), 5); | ||
} | ||
function test3() { | ||
var matrix = [ | ||
[0, 1, 0, 0, 0], | ||
[0, 1, 1, 1, 1], | ||
[0, 0, 0, 0, 1], | ||
[0, 1, 1, 1, 1], | ||
[0, 0, 1, 0, 0], | ||
[0, 0, 0, 0, 0], | ||
] | ||
assert.strictEqual(maxAreaOfIsland(matrix), 11); | ||
} | ||
function test() { | ||
test1(); | ||
test2(); | ||
test3(); | ||
} | ||
module.exports.test = test |
3 changes: 2 additions & 1 deletionREADME.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.