728x90
반응형
1. 오늘의 학습 키워드
[LeetCode] 1476. Subrectangle Queries JAVA풀이/ 배열
2. 오늘의 학습 문제
문제
https://leetcode.com/problems/subrectangle-queries/
코드
class SubrectangleQueries {
int[][] rectangle;
public SubrectangleQueries(int[][] rectangle) {
this.rectangle = rectangle;
}
public void updateSubrectangle(int row1, int col1, int row2, int col2, int newValue) {
for(int i = row1; i <= row2; i++){
for(int j = col1; j <= col2; j++){
rectangle[i][j] = newValue;
}
}
}
public int getValue(int row, int col) {
return rectangle[row][col];
}
}
/**
* Your SubrectangleQueries object will be instantiated and called as such:
* SubrectangleQueries obj = new SubrectangleQueries(rectangle);
* obj.updateSubrectangle(row1,col1,row2,col2,newValue);
* int param_2 = obj.getValue(row,col);
*/
3. 오늘의 회고
- 다시 풀어볼것!
728x90
반응형
'공부 > 2024 항해99코딩클럽' 카테고리의 다른 글
99클럽 코테 스터디 28일차 TIL + 배열 (0) | 2024.06.17 |
---|---|
99클럽 코테 스터디 27일차 TIL + 비트와 바이트 (0) | 2024.06.15 |
99클럽 코테 스터디 25일차 TIL + [프로그래머스] 순위 JAVA 풀이/그래프/BFS (1) | 2024.06.13 |
99클럽 코테 스터디 24일차 TIL + [프로그래머스] 가장 먼 노드 자바 풀이/그래프 (0) | 2024.06.12 |
99클럽 코테 스터디 23일차 TIL + [LeetCode] 1011. Capacity To Ship Packages Within D Days JAVA풀이/ 이분탐색 (0) | 2024.06.11 |