summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorYAN Hui Hang <yanhuihang@126.com>2022-01-03 23:58:46 +0800
committerGitHub <noreply@github.com>2022-01-03 23:58:46 +0800
commit831b708150dcf3a69a13285d125a5fedcd0ac401 (patch)
tree708b1a75d282aa6fefb892654e981a2878a125b0
parent1d62c29e8426c2c5e3fc7578111652bca7140e8d (diff)
Update dynamic-programming-cn.html.markdown (#4103)
-rw-r--r--zh-cn/dynamic-programming-cn.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/zh-cn/dynamic-programming-cn.html.markdown b/zh-cn/dynamic-programming-cn.html.markdown
index b75c5404..7864c22a 100644
--- a/zh-cn/dynamic-programming-cn.html.markdown
+++ b/zh-cn/dynamic-programming-cn.html.markdown
@@ -15,7 +15,7 @@ translators:
动态规划是一种实用的技巧,它可以用来解决一系列特定问题。它的思路很简单,如果你对某个给定的输入解决了一个问题,那么你可以保存已有信息,以避免重复计算,节约计算时间。
-记住,只有那些没有办法记住历史的才被迫做更多的苦力。(Fibonacci就是一个显然的例子)
+记住,如果忘记历史,就要被迫做更多的苦力。斐波那契数列就是一个显然的例子。
## 解决问题的方式