File tree 1 file changed +4
-3
lines changed
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -32,9 +32,9 @@ F(n) = F(n - 1) + F(n - 2),其中 n > 1
32
32
33
33
* 0 <= n <= 30
34
34
35
- # 视频讲解
35
+ ## 算法公开课
36
36
37
- ** 《代码随想录》算法视频公开课:[ 手把手带你入门动态规划 | leetcode:509.斐波那契数] ( https://www.bilibili.com/video/BV1f5411K7mo ) ,相信结合视频在看本篇题解,更有助于大家对本题的理解** 。
37
+ ** [ 《代码随想录》算法视频公开课] ( https://programmercarl.com/other/gongkaike.html ) :[ 手把手带你入门动态规划 | leetcode:509.斐波那契数] ( https://www.bilibili.com/video/BV1f5411K7mo ) ,相信结合视频在看本篇题解,更有助于大家对本题的理解** 。
38
38
39
39
## 思路
40
40
@@ -278,7 +278,7 @@ class Solution:
278
278
return self .fib(n - 1 ) + self .fib(n - 2 )
279
279
```
280
280
281
- ### Go:
281
+ ### Go
282
282
``` Go
283
283
func fib (n int ) int {
284
284
if n < 2 {
@@ -479,3 +479,4 @@ public class Solution
479
479
<a href =" https://programmercarl.com/other/kstar.html " target =" _blank " >
480
480
<img src =" ../pics/网站星球宣传海报.jpg " width =" 1000 " />
481
481
</a >
482
+
You can’t perform that action at this time.
0 commit comments