• 38. Count and Say(js)


    38. Count and Say

    The count-and-say sequence is the sequence of integers with the first five terms as following:

    1.     1
    2.     11
    3.     21
    4.     1211
    5.     111221
    

    1 is read off as "one 1" or 11.
    11 is read off as "two 1s" or 21.
    21 is read off as "one 2, then one 1" or 1211.

    Given an integer n where 1 ≤ n ≤ 30, generate the nth term of the count-and-say sequence.

    Note: Each term of the sequence of integers will be represented as a string.

    Example 1:

    Input: 1
    Output: "1"
    

    Example 2:

    Input: 4
    Output: "1211"
    题意:第一项是1个1,所以第二项是11,第二项是2个1,所以第三项是21,。。。。以此类推
    代码如下:
    /**
     * @param {number} n
     * @return {string}
     */
    var countAndSay = function(n) {
        var s='1';
        for(var i=1;i<n;i++){
            s=getStr(s);
            // console.log(s)
        }
        // console.log(s);
        return s;
    };
    var getStr=function(s){
    
        var curr=s.charAt(0);
        var count=1;
        var res="";
        for(var i=1;i<s.length;i++){
    
            if(s.charAt(i)== curr){
                count++;
            }else{
                //与前一个字符不相同,立即将前面收集的字符存入res            
                res=res+count+curr;
                //当前字符存入curr
                curr=s.charAt(i);
    
                count=1;
            }
        }
        res=res+count+curr;
        return res+"";
    };
  • 相关阅读:
    Python3组合数据类型(元组、列表、集合、字典)语法
    tkinter模块常用参数(python3)
    python3的正则表达式(regex)
    QC的使用简介
    Linux常用命令
    Linux中jdk的安装和环境变量的配置
    大道至简阅读笔记07
    大道至简阅读笔记06
    大道至简阅读笔记05
    个人工作总结10
  • 原文地址:https://www.cnblogs.com/xingguozhiming/p/10415297.html
Copyright © 2020-2023  润新知