Skip to content

Commit

Permalink
feature: add new resource and update article[recursion]
Browse files Browse the repository at this point in the history
  • Loading branch information
SimoneCheng committed Jul 28, 2023
1 parent 2710d3a commit fffefcf
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
10 changes: 10 additions & 0 deletions docs/collection/web.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
title: Web
date: 2023-07-28
---

## 🐳 制定網路標準的相關組織

- IETF(網際網路工程任務組):https://www.ietf.org/
- WHATWG(網頁超文字應用技術工作小組):https://whatwg.org/
- W3C(全球資訊網協會):https://www.w3.org/
6 changes: 5 additions & 1 deletion docs/notes/data-structure/recursion.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,11 @@ function fac(n) {
#### Definition

$$
F_{0} = 0,\ F_{1} = 1,\ F_{n} = F_{n-1} + F_{n-2},\ for\ n \ge 2
\begin{cases}
F_{0} = 0 \\
F_{1} = 1 \\
F_{n} = F_{n-1} + F_{n-2},\ for\ n \ge 2
\end{cases}
$$

#### Question 1: Write a Recurisive function for Fib(N)
Expand Down

0 comments on commit fffefcf

Please sign in to comment.