Skip to content

Commit b295b12

Browse files
committed
更新 0509.斐波那契数 排版格式修复
1 parent 6ed304e commit b295b12

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Diff for: problems/0509.斐波那契数.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ F(n) = F(n - 1) + F(n - 2),其中 n > 1
3232

3333
* 0 <= n <= 30
3434

35-
# 视频讲解
35+
## 算法公开课
3636

37-
**《代码随想录》算法视频公开课:[手把手带你入门动态规划 | leetcode:509.斐波那契数](https://www.bilibili.com/video/BV1f5411K7mo),相信结合视频在看本篇题解,更有助于大家对本题的理解**
37+
**[《代码随想录》算法视频公开课](https://programmercarl.com/other/gongkaike.html)[手把手带你入门动态规划 | leetcode:509.斐波那契数](https://www.bilibili.com/video/BV1f5411K7mo),相信结合视频在看本篇题解,更有助于大家对本题的理解**
3838

3939
## 思路
4040

@@ -278,7 +278,7 @@ class Solution:
278278
return self.fib(n - 1) + self.fib(n - 2)
279279
```
280280

281-
### Go
281+
### Go
282282
```Go
283283
func fib(n int) int {
284284
if n < 2 {
@@ -479,3 +479,4 @@ public class Solution
479479
<a href="https://programmercarl.com/other/kstar.html" target="_blank">
480480
<img src="../pics/网站星球宣传海报.jpg" width="1000"/>
481481
</a>
482+

0 commit comments

Comments
 (0)