일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Python Implementation
- 컴퓨터의 구조
- Python Code
- shiba
- 프로그래머스
- Protocol
- 파이썬
- 315. Count of Smaller Numbers After Self
- 밴픽
- LeetCode
- attribute
- DWG
- 109. Convert Sorted List to Binary Search Tree
- Convert Sorted List to Binary Search Tree
- 시바견
- Decorator
- Class
- Generator
- kaggle
- Substring with Concatenation of All Words
- iterator
- data science
- Regular Expression
- Python
- t1
- 715. Range Module
- 30. Substring with Concatenation of All Words
- concurrency
- 43. Multiply Strings
- 운영체제
Archives
- Today
- Total
목록Unique Paths (1)
Scribbling
LeetCode: 62. Unique Paths
한국 고등학교 수학 공부했으면 다 푸는 문제 class Solution: def uniquePaths(self, m: int, n: int) -> int: board = [[1] * n for _ in range(m)] for i in range(1, m): for j in range(1, n): board[i][j] = board[i-1][j] + board[i][j-1] return board[m-1][n-1]
Computer Science/Coding Test
2021. 9. 24. 16:45