Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/02algorithms/05order/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ $n = 2$ 程度なら計算量の差はほとんどありませんが、$n$ の

<ViewSource path="/order/example4.ipynb" />

このプログラムは for 文で $n^2+n=O(n)$ 回繰り返されるので、計算量は $O(n^2)$ です。
このプログラムは for 文で $n^2+n=O(n^2)$ 回繰り返されるので、計算量は $O(n^2)$ です。

<ViewSource path="/recursion/recurrence_relation_rec.ipynb" />

Expand Down