const 课程地址 = " http://icourse8.com/Dockerbushu.html ";
详细信息
第1章 课程介绍
第2章 人人开源前后端分离项目下载与配置
第3章 Linux基础知识强化
第4章 搭建MySQL集群
第5章 搭建Redis集群
第6章 部署前后端分离项目
第7章 课后作业
第8章 云平台部署前后端分离
第9章 课程总结
var countAndSay = function(n) {
return createStr(1, ‘1‘, n)
function createStr(index, str, n) {
if(index == n)
return str
index++
let newChar = ‘‘
let k = 1
for(let j = 0; j < str.length; j++) {
let char = str.charAt(j)
if(char == str.charAt(j+1) && j != str.length - 1) {
k++
}else {
newChar = newChar + k + str.charAt(j)
k=1
}
}
return createStr(index, newChar, n)
}
}
原文地址:https://blog.51cto.com/14127893/2410810
时间: 2024-10-09 20:08:28