You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: 04-functions-modules/guide.md
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -7,10 +7,19 @@
7
7
8
8
Implement `min`, `max` functions on your own.
9
9
10
+
11
+
## Hanoi
12
+
- difficulty: ★☆☆
13
+
- time: ~ 30m for beginners
14
+
- background: recursion
15
+
16
+
Implement `hanoi` function on your own. `hanoi` function is a guide that tells how to move disks in tower based on certain rules. You can find specific information about "Tower of Hanoi" in here [[wiki](https://en.wikipedia.org/wiki/Tower_of_Hanoi,"hanoitowerwiki")].
17
+
10
18
## Binomial Coefficient
11
19
12
20
- difficulty: ★★☆
13
21
- time: ~ 30m for beginners
14
22
- background: function, recursion
15
23
16
24
Implement a function which calculates binomial coefficient, $\prescript{}{n}C_k$.
0 commit comments