Correct inaccurate Chinese translation. (#768)

This commit is contained in:
Bravo Yeung 2022-01-25 17:02:35 +08:00 committed by GitHub
parent ae915372d9
commit 5dc17089bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -175,7 +175,7 @@ _Read this in other languages:_
* `B` [快速算次方](src/algorithms/math/fast-powering) * `B` [快速算次方](src/algorithms/math/fast-powering)
* `A` [排列](src/algorithms/sets/permutations) (有/无重复) * `A` [排列](src/algorithms/sets/permutations) (有/无重复)
* `A` [组合](src/algorithms/sets/combinations) (有/无重复) * `A` [组合](src/algorithms/sets/combinations) (有/无重复)
* **动态编程** - 使用以前找到的子解决方案构建解决方案 * **动态规划(Dynamic programming)** - 使用以前找到的子解决方案构建解决方案
* `B` [斐波那契数](src/algorithms/math/fibonacci) * `B` [斐波那契数](src/algorithms/math/fibonacci)
* `B` [跳跃游戏](src/algorithms/uncategorized/jump-game) * `B` [跳跃游戏](src/algorithms/uncategorized/jump-game)
* `B` [独特路径](src/algorithms/uncategorized/unique-paths) * `B` [独特路径](src/algorithms/uncategorized/unique-paths)