diff --git a/problems/0509.斐波那契数.md b/problems/0509.斐波那契数.md index cdbf860c..45a9cf6b 100644 --- a/problems/0509.斐波那契数.md +++ b/problems/0509.斐波那契数.md @@ -230,7 +230,7 @@ class Solution: return dp[n] ``` -态规划(版本二) +动态规划(版本二) ```python class Solution: