-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy path0554-brick-wall.js
36 lines (33 loc) · 1.15 KB
/
0554-brick-wall.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/**
* 554. Brick Wall
* https://leetcode.com/problems/brick-wall/
* Difficulty: Medium
*
* There is a rectangular brick wall in front of you with n rows of bricks. The ith row has
* some number of bricks each of the same height (i.e., one unit) but they can be of different
* widths. The total width of each row is the same.
*
* Draw a vertical line from the top to the bottom and cross the least bricks. If your line
* goes through the edge of a brick, then the brick is not considered as crossed. You cannot
* draw a line just along one of the two vertical edges of the wall, in which case the line
* will obviously cross no bricks.
*
* Given the 2D array wall that contains the information about the wall, return the minimum
* number of crossed bricks after drawing such a vertical line.
*/
/**
* @param {number[][]} wall
* @return {number}
*/
var leastBricks = function(wall) {
const map = new Map();
let max = 0;
for (const row of wall) {
for (let i = 0, sum = 0; i < row.length - 1; i++) {
sum += row[i];
map.set(sum, (map.get(sum) || 0) + 1);
max = Math.max(max, map.get(sum));
}
}
return wall.length - max;
};