일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 사이드
- English
- 영어원서읽기
- Daily Challenge
- 뭐든
- 괜찮음
- 월간
- 미드시청
- Problem Solving
- FIT XR
- 리얼 클래스
- 읽기
- leetcode
- 잡생각
- 파비최
- 프로젝트
- Writing
- 스탭퍼
- 운동
- 매일
- 링피트
- 화상영어
- 10분
- 개발자
- 3줄정리
- 쓰릴오브파이트
- 만화도
- 30분
- realclass
- 영어공부
Archives
- Today
- Total
파비의 매일매일 공부기록
Today's Challenge 본문
https://leetcode.com/problems/unique-paths/
DP를 이용한 간단한 풀이 문제.
나에겐 그닥 간단친 않음 ㅠㅠ
class Solution:
def uniquePaths(self, m: int, n: int) -> int:
def solve(y, x):
if y == m-1 or x == n-1:
return 1
if dp[y][x] != 0:
return dp[y][x]
dp[y][x] = solve(y+1, x) + solve(y, x+1)
return dp[y][x]
dp = [[0 for x in range(n)] for y in range(m)]
return solve(0,0)
반응형
'Problem Solving > LeetCode' 카테고리의 다른 글
Today's Challenge (0) | 2022.08.03 |
---|---|
Today's Challenge (0) | 2022.08.02 |
Today's Challenge (0) | 2022.07.31 |
Today's Challenge (0) | 2022.07.30 |
Today's Challenge (0) | 2022.07.29 |
Comments