外观数列的前几项如下: 1, 11, 21, 1211, 111221, ... 1读作“1个1”或11 11读作“2个1“或者21 21读作”1个2,1个1“或者1211 给出一个整数n,请给出序列的第n项 每一次读都是以前一次为基础 注意:序列中的数字用字符串表示
示例1
输入
2
输出
"11"
示例2
输入
4
输出
"1211"
加载中...
import java.util.*; public class Solution { /** * * @param n int整型 * @return string字符串 */ public String countAndSay (int n) { // write code here } }
class Solution { public: /** * * @param n int整型 * @return string字符串 */ string countAndSay(int n) { // write code here } };
# # # @param n int整型 # @return string字符串 # class Solution: def countAndSay(self , n ): # write code here
/** * * @param n int整型 * @return string字符串 */ function countAndSay( n ) { // write code here } module.exports = { countAndSay : countAndSay };
# # # @param n int整型 # @return string字符串 # class Solution: def countAndSay(self , n ): # write code here
package main /** * * @param n int整型 * @return string字符串 */ func countAndSay( n int ) string { // write code here }
2
"11"
4
"1211"