作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
问题要我输出字符串“Edabit”,其中“a”字符的数量等于通过函数传递的初始数字。
我尝试了不同的连接方法,但由于某种原因,“a”字符串似乎忽略了它们在连接中的位置。
function howManyTimes(num) {
let str = ''
if (num === 0){
return `Ed${str}bit`
}
else {
str += 'a'
return str += howManyTimes(num - 1)
}
}
console.assert(howManyTimes(0) == "Edbit", "1. Instead got "+howManyTimes(0));
console.assert(howManyTimes(1) == "Edabit", "2. Instead got "+howManyTimes(1));
console.assert(howManyTimes(10) == "Edaaaaaaaaaabit", "3. Instead got "+howManyTimes(10));
最佳答案
function howManyTimes(num, str) {
if (!str) str = '';
if (num > 0) {
return howManyTimes(num - 1, str + 'a');
} else {
return `Ed${str}bit`;
}
}
console.log(howManyTimes(8));
a
.而不是这样做,传递聚合的字符串,然后在到达末尾时使用。
关于javascript - 递归挑战 - Edabit,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63587210/
问题要我输出字符串“Edabit”,其中“a”字符的数量等于通过函数传递的初始数字。 我尝试了不同的连接方法,但由于某种原因,“a”字符串似乎忽略了它们在连接中的位置。 function howMan
我是一名优秀的程序员,十分优秀!