일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 백준 막대기
- leetcode 2405
- python 10989
- 백준
- softeer
- 백준 2309
- leetcode
- 개발자 취업
- 99클럽
- til
- 일곱 난쟁이
- 파이썬
- 구현
- python 10250
- 프로그래머스
- python 14503
- 백준 팰린드롬수
- Python 20001
- 큐
- python 2309
- boj 2309
- Python
- 코딩테스트 준비
- 항해99
- 99항해
- 스택
- BOJ
- 백준 카드1
- python 1259
- BFS
- Today
- Total
목록2024/06/14 (2)
동까의 코딩
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] = new..
https://school.programmers.co.kr/learn/courses/30/lessons/49191 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr def solution(n, results): answer = 0 board = [[0] * n for _ in range(n)] for a,b in results: board[a - 1][b - 1] = 1 board[b - 1][a - 1] = -1 for k in range(n): for i in range(n): ..