Count and Say

    xiaoxiao2022-07-07  184

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

    1 11 21 1211 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.

    public static String countAndsay(int n) { String s = "1"; for(int i = 1; i < n; i++) s = getIdx(s); return s; } public static String getIdx(String s) { StringBuilder sb = new StringBuilder(); int count = 1; char c = s.charAt(0); for(int i = 1; i < s.length(); i++) { if(c==s.charAt(i)) count++; else { sb.append(count); sb.append(c); count = 1; c = s.charAt(i); } } sb.append(count); sb.append(c); return sb.toString(); }
    最新回复(0)