Fix multilingual content typos (#1958)

This commit is contained in:
Yudong Jin
2026-08-18 03:08:23 +08:00
committed by GitHub
parent 69932aed18
commit bf86c39b6c
201 changed files with 289 additions and 271 deletions
@@ -35,7 +35,7 @@
状態 $[i, j]$ に対応する部分問題は、**$s$ の先頭 $i$ 文字を $t$ の先頭 $j$ 文字に変換するのに必要な最小編集回数**です。
これにより、サイズが $(i+1) \times (j+1)$ の2次元 $dp$ テーブルが得られます。
これにより、サイズが $(n+1) \times (m+1)$ の2次元 $dp$ テーブルが得られます。
**第2ステップ:最適部分構造を見つけ、状態遷移方程式を導く**