提交 94ee43d0 编写于 作者: 每日一练社区's avatar 每日一练社区

update exercises

上级 5af4af91
...@@ -51,14 +51,14 @@ ...@@ -51,14 +51,14 @@
<pre><strong>输入:</strong>n = 4 <pre><strong>输入:</strong>n = 4
<strong><br />输出:</strong>"1211" <strong><br />输出:</strong>"1211"
<strong><br />解释:</strong> <strong><br />解释:</strong>
countAndSay(1) = "1" </pre>
```
countAndSay(1) = "1"
countAndSay(2) = 读 "1" = 一 个 1 = "11" countAndSay(2) = 读 "1" = 一 个 1 = "11"
countAndSay(3) = 读 "11" = 二 个 1 = "21" countAndSay(3) = 读 "11" = 二 个 1 = "21"
countAndSay(4) = 读 "21" = 一 个 2 + 一 个 1 = "12" + "11" = "1211" countAndSay(4) = 读 "21" = 一 个 2 + 一 个 1 = "12" + "11" = "1211"
</pre> ```
<p>&nbsp;</p> <p>&nbsp;</p>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册