-
-
Notifications
You must be signed in to change notification settings - Fork 8.9k
/
Copy pathSolution.ts
35 lines (32 loc) · 987 Bytes
/
Solution.ts
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
class SubrectangleQueries {
grid: number[][];
history: number[][];
constructor(rectangle: number[][]) {
this.grid = rectangle;
this.history = [];
}
updateSubrectangle(
row1: number,
col1: number,
row2: number,
col2: number,
newValue: number
): void {
this.history.push([row1, col1, row2, col2, newValue]);
}
getValue(row: number, col: number): number {
for (let i = this.history.length - 1; i >= 0; --i) {
let [row1, col1, row2, col2, newValue] = this.history[i];
if (row >= row1 && row <= row2 && col >= col1 && col <= col2) {
return newValue;
}
}
return this.grid[row][col];
}
}
/**
* Your SubrectangleQueries object will be instantiated and called as such:
* var obj = new SubrectangleQueries(rectangle)
* obj.updateSubrectangle(row1,col1,row2,col2,newValue)
* var param_2 = obj.getValue(row,col)
*/