From 5dc17089bcadce02d33c8fdf29fea9474e3933d4 Mon Sep 17 00:00:00 2001 From: Bravo Yeung Date: Tue, 25 Jan 2022 17:02:35 +0800 Subject: [PATCH] Correct inaccurate Chinese translation. (#768) --- README.zh-CN.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.zh-CN.md b/README.zh-CN.md index 8bf216d6..c8d419bc 100644 --- a/README.zh-CN.md +++ b/README.zh-CN.md @@ -175,7 +175,7 @@ _Read this in other languages:_ * `B` [快速算次方](src/algorithms/math/fast-powering) * `A` [排列](src/algorithms/sets/permutations) (有/无重复) * `A` [组合](src/algorithms/sets/combinations) (有/无重复) -* **动态编程** - 使用以前找到的子解决方案构建解决方案 +* **动态规划(Dynamic programming)** - 使用以前找到的子解决方案构建解决方案 * `B` [斐波那契数](src/algorithms/math/fibonacci) * `B` [跳跃游戏](src/algorithms/uncategorized/jump-game) * `B` [独特路径](src/algorithms/uncategorized/unique-paths)