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

update exercises

上级 1d946649
......@@ -6,9 +6,9 @@
为了公平起见,小明需要从这 N 块巧克力中切出K块巧克力分给小朋友们。切出的巧克力需要满足:
1. 形状是正方形,边长是整数
* 形状是正方形,边长是整数
2. 大小相同
* 大小相同
例如一块6x5的巧克力可以切出6块2x2的巧克力或者2块3x3的巧克力。
......
......@@ -5,6 +5,7 @@
要求这两部分的形状完全相同。
如图:
![](https://img-blog.csdn.net/20180321145603391)
![](https://img-blog.csdn.net/20180321145607269)
......
......@@ -52,8 +52,11 @@
<strong><br />输出:</strong>"1211"
<strong><br />解释:</strong>
countAndSay(1) = "1"
countAndSay(2) = 读 "1" = 一 个 1 = "11"
countAndSay(3) = 读 "11" = 二 个 1 = "21"
countAndSay(4) = 读 "21" = 一 个 2 + 一 个 1 = "12" + "11" = "1211"
</pre>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册