동까의 코딩

[99클럽] 25일차 TIL 본문

문제 풀이/99클럽

[99클럽] 25일차 TIL

동까의 코딩 2024. 6. 14. 19:48
반응형

https://leetcode.com/problems/subrectangle-queries/

 

 

class SubrectangleQueries:

    def __init__(self, rectangle: List[List[int]]):
        self.rectangle = rectangle
        
    def updateSubrectangle(self, row1: int, col1: int, row2: int, col2: int, newValue: int) -> None:
        for i in range(row1, row2 + 1) :
            for j in range(col1, col2 + 1) :
                self.rectangle[i][j] = newValue        

    def getValue(self, row: int, col: int) -> int:
        return self.rectangle[row][col]

 

지난 문제에 비해서 난이도는 낮은 느낌이였습니다.

반응형

'문제 풀이 > 99클럽' 카테고리의 다른 글

[99클럽] 27일차 TIL  (0) 2024.06.16
[99클럽] 26일차 TIL  (0) 2024.06.16
[99클럽] 24일차 TIL  (1) 2024.06.14
[99클럽] 23일차 TIL  (0) 2024.06.12
[99클럽] 22일차 TIL  (0) 2024.06.11