freeCodeCamp/curriculum/challenges/chinese/02-javascript-algorithms-an.../basic-algorithm-scripting/repeat-a-string-repeat-a-st...

1.6 KiB

id title challengeType forumTopicId dashedName
afcc8d540bea9ea2669306b6 重复输出字符串 5 16041 repeat-a-string-repeat-a-string

--description--

将一个给定的字符串 str(第一个参数)重复输出 num(第二个参数)次。 如果 num 不是正数,返回空字符串。 在这个挑战中,请不要使用 JavaScript 内置的 .repeat() 方法。

--hints--

repeatStringNumTimes("*", 3) 应返回 ***

assert(repeatStringNumTimes('*', 3) === '***');

repeatStringNumTimes("abc", 3) 应返回 abcabcabc

assert(repeatStringNumTimes('abc', 3) === 'abcabcabc');

repeatStringNumTimes("abc", 4) 应返回 abcabcabcabc

assert(repeatStringNumTimes('abc', 4) === 'abcabcabcabc');

repeatStringNumTimes("abc", 1) 应返回 abc

assert(repeatStringNumTimes('abc', 1) === 'abc');

repeatStringNumTimes("*", 8) 应返回 ********

assert(repeatStringNumTimes('*', 8) === '********');

repeatStringNumTimes("abc", -2) 应返回 ""

assert(repeatStringNumTimes('abc', -2) === '');

不应使用内置的 repeat() 方法。

assert(!/\.repeat/g.test(code));

repeatStringNumTimes("abc", 0) 应返回 ""

assert(repeatStringNumTimes('abc', 0) === '');

--seed--

--seed-contents--

function repeatStringNumTimes(str, num) {
  return str;
}

repeatStringNumTimes("abc", 3);

--solutions--

function repeatStringNumTimes(str, num) {
  if (num < 1) return '';
  return num === 1 ? str : str + repeatStringNumTimes(str, num-1);
}

repeatStringNumTimes("abc", 3);