You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** * @param {number} n * @return {string} */varcountAndSay=function(n){letsequence="1";letnewTerm="";for(leti=2;i<n+1;i++){for(letstart=0;start<sequence.length;start++){//check if there are at least two charactersif(start+1<sequence.length){letwindow=sequence.substring(start,start+2);if(window==="11"){newTerm+="21";start+=1;}elseif(window==="21"){newTerm+="1211"start+=1;}elseif(window[0]==="1"){newTerm+="1"}}elseif(sequence[start]==="1"){newTerm+="11"}}sequence=newTerm;newTerm="";}returnsequence;};Note: thissolutioncomesclose(uptolevel4),butdoesn't pass an input of 5.
The count-and-say sequence is the sequence of integers with the first five terms as following:
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"
The text was updated successfully, but these errors were encountered: