일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- concurrency
- Class
- attribute
- data science
- Protocol
- 43. Multiply Strings
- 30. Substring with Concatenation of All Words
- Python Code
- iterator
- Substring with Concatenation of All Words
- 프로그래머스
- 109. Convert Sorted List to Binary Search Tree
- 컴퓨터의 구조
- 715. Range Module
- DWG
- LeetCode
- Convert Sorted List to Binary Search Tree
- 운영체제
- 밴픽
- t1
- Decorator
- 315. Count of Smaller Numbers After Self
- 파이썬
- Python
- Generator
- shiba
- 시바견
- Python Implementation
- kaggle
- Regular Expression
Archives
- Today
- Total
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' 카테고리의 다른 글
LeetCode: 64. Minimum Path Sum (0) | 2021.09.24 |
---|---|
LeetCode: 63. Unique Paths II (0) | 2021.09.24 |
LeetCode: 61. Rotate List (0) | 2021.09.24 |
LeetCode: 60. Permutation Sequence (0) | 2021.09.24 |
LeetCode: 59. Spiral Matrix II (0) | 2021.09.24 |