반응형
Recent Posts
Notice
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 |
Tags
- 백준
- softeer
- python 1259
- Python
- 99클럽
- BFS
- boj 2309
- 백준 카드1
- 파이썬
- BOJ
- python 14503
- python 10989
- Python 20001
- 항해99
- leetcode
- 백준 2309
- 개발자 취업
- til
- 코딩테스트 준비
- 백준 팰린드롬수
- 백준 막대기
- 99항해
- 일곱 난쟁이
- python 10250
- 스택
- 프로그래머스
- python 2309
- leetcode 2405
- 큐
- 구현
Archives
- Today
- Total
목록2024/06/09 (1)
동까의 코딩
[99클럽] 20일차 TIL
https://leetcode.com/problems/count-square-submatrices-with-all-ones/submissions/1282783267/ class Solution(object): def countSquares(self, matrix): if len(matrix) == 0 or len(matrix[0]) == 0: return 0 rows, cols = len(matrix), len(matrix[0]) dp = [[0 for _ in range(cols)] for _ in range(rows)] ans = 0 for i in range(rows): ..
문제 풀이/99클럽
2024. 6. 9. 20:47