Update 0509.斐波那契数.md

This commit is contained in:
jianghongcheng 2023-06-01 15:19:56 -05:00 committed by GitHub
parent 8e7d9f579c
commit b5494585fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -230,7 +230,7 @@ class Solution:
return dp[n]
```
态规划(版本二)
态规划(版本二)
```python
class Solution: