
500 幅动画图解、12 种编程语言代码、2000 条社区问答,助你快速入门数据结构与算法
+diff --git a/docs-en/chapter_computational_complexity/iteration_and_recursion.md b/docs-en/chapter_computational_complexity/iteration_and_recursion.md index 783d94ad1..d0005a962 100644 --- a/docs-en/chapter_computational_complexity/iteration_and_recursion.md +++ b/docs-en/chapter_computational_complexity/iteration_and_recursion.md @@ -461,7 +461,7 @@ For example, in the following code, the condition variable $i$ is updated twice int WhileLoopII(int n) { int res = 0; int i = 1; // 初始化条件变量 - // 循环求和 1, 2, 4, 5... + // 循环求和 1, 4, 10, ... while (i <= n) { res += i; // 更新条件变量 diff --git a/docs-en/index.md b/docs-en/index.md index 4471c10af..7a5324b49 100644 --- a/docs-en/index.md +++ b/docs-en/index.md @@ -108,8 +108,7 @@ hide:
"Chase the wind and moon, never stopping"
-"Beyond the plains, there are spring mountains"
+"Knowledge increases by sharing."