Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 파이썬 클래스
- print sep
- 주니어개발자멘토링
- MomentumParameters
- 99일지
- 99클럽
- 파이썬 map 함수
- 개발자스터디
- 파이썬 sep
- 파이썬
- cp949
- not a git repository
- EnvCommandError
- print("""
- 항해
- fatal:not a git repository
- 코딩부트캠프후기
- Fatal Python error: init_fs_encoding: failed to get the Python codec of the filesystem encoding
- 항해플러스
- 10430번
- Til
- 개발자사이드프로젝트
- 코딩테스트
- vscode cp949
- 99클럽 #99일지 #코딩테스트 #개발자스터디 #항해 #til
- 백준
- 항해99
- 파이썬 |
- 파이썬 int()
- 주니어개발자역량강화
Archives
- Today
- Total
선발대
[스파르타] 99클럽 2기 코테스터디 26일차 TIL / leet 1476 본문
LeetCode: 1476. 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 row in range(row1, row2+1):
for col in range(col1, col2+1):
self.rectangle[row][col] = newValue
def getValue(self, row: int, col: int) -> int:
return self.rectangle[row][col]
# Your SubrectangleQueries object will be instantiated and called as such:
# obj = SubrectangleQueries(rectangle)
# obj.updateSubrectangle(row1,col1,row2,col2,newValue)
# param_2 = obj.getValue(row,col)
참고한 블로그: https://bomoto.tistory.com/21
'스파르타코딩클럽 > 활동 내용' 카테고리의 다른 글
[스파르타] 99클럽 2기 코테스터디 28일차 TIL / leet 1282 (0) | 2024.06.16 |
---|---|
[스파르타] 99클럽 2기 코테스터디 27일차 TIL / leet 2433 (0) | 2024.06.15 |
[스파르타] 99클럽 2기 코테스터디 25일차 TIL / 순위 (0) | 2024.06.13 |
[스파르타] 99클럽 2기 코테스터디 24일차 TIL / 가장 먼 노드 (1) | 2024.06.12 |
[스파르타] 99클럽 2기 코테스터디 23일차 TIL / Leet 1011 (1) | 2024.06.11 |
Comments