Skip to content

Commit 298026e

Browse files
authored
Merge pull request #228 from chvmvd/fix-math-dots
2 parents a30b5bd + c5cf705 commit 298026e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

docs/04-algorithms/01-recursion/index.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ $$
3636

3737
**解法 2**
3838

39-
他には、次のようにして $a_1,a_2,a_3,\cdots$ のように順番に求めていくこともできます。
39+
他には、次のようにして $a_1,a_2,a_3,\dots$ のように順番に求めていくこともできます。
4040

4141
<ViewSource path="/recursion/recurrence_relation_dp.ipynb" />
4242

@@ -113,7 +113,7 @@ $$
113113
次のような数列になっています。
114114

115115
$$
116-
0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, 610, 987, 1597, \cdots
116+
0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, 610, 987, 1597, \dots
117117
$$
118118

119119
<ViewSource path="/recursion/fib.ipynb" />
@@ -286,7 +286,7 @@ $$
286286
リュカ数列は次のようになります。
287287

288288
$$
289-
2, 1, 3, 4, 7, 11, 18, 29, 47, 76, 123, 199, 322, 521, 843, 1364, 2207, \cdots
289+
2, 1, 3, 4, 7, 11, 18, 29, 47, 76, 123, 199, 322, 521, 843, 1364, 2207, \dots
290290
$$
291291

292292
:::info
@@ -332,7 +332,7 @@ $$
332332
トリボナッチ数列は次のようになります。
333333

334334
$$
335-
0, 0, 1, 1, 2, 4, 7, 13, 24, 44, 81, 149, 274, 504, \cdots
335+
0, 0, 1, 1, 2, 4, 7, 13, 24, 44, 81, 149, 274, 504, \dots
336336
$$
337337

338338
:::note

docs/04-algorithms/06-dp/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import Hint from "@site/src/components/Hint";
1414

1515
動的計画法の説明に必ずといってもいいほどよく使われるフィボナッチ数列を例に説明していきます。
1616

17-
フィボナッチ数列 $F_n$ ( $0, 1, 1, 2, 3, 5, 8, 13, 21, 34 \cdots$ )は、次のように定義されるのでした。
17+
フィボナッチ数列 $F_n$ ( $0, 1, 1, 2, 3, 5, 8, 13, 21, 34,\dots$ )は、次のように定義されるのでした。
1818

1919
$$
2020
\begin{align*}

0 commit comments

Comments
 (0)