* Modify if statement Change the solution so an empty string is returned when num is less than 1 rather than less than 0 for consistency with instructions. * Add test New test checks that if num is 0, an empty string is returned * Fix test Fixing errors in newly proposed test that checks that empty string is returned when num is 0 * Modify intermediate solution Changing if statement in intermediate solution to check whether num is less than 1 rather than less than 0. (Also adding curly brackets to that solutions if/else statements.) * fix: removed unnecessary assert message arguments
4.7 KiB
4.7 KiB
title
title |
---|
Repeat a String Repeat a String |
Remember to use
Read-Search-Ask
if you get stuck. Try to pair program and write your own code
Problem Explanation:
The program is very simple, we have to take a variable and return that variable being repeated certain amount of times. No need to add space or anything, just keep repeating it into one single string.
Relevant Links
Hint: 1
You can't edit strings, you will need to create a variable to store the new string.
try to solve the problem now
Hint: 2
Create a loop to repeat the code as many times as needed.
try to solve the problem now
Hint: 3
Make the variable created store the current value and append the word to it.
try to solve the problem now
Spoiler Alert!
Solution ahead!
Basic Code Solution:
function repeatStringNumTimes(str, num) {
var accumulatedStr = '';
while (num > 0) {
accumulatedStr += str;
num--;
}
return accumulatedStr;
}
Code Explanation:
- Create an empty string variable to store the repeated word.
- Use a while loop or for loop to repeat code as many times as needed according to
num
- Then we just have to add the string to the variable created on step one, and increase or decrease
num
depending on how you set the loop. - At the end of the loop, return the variable for the repeated word.
Relevant Links
- JS while Loop
- JS For Loops Explained
Intermediate Code Solution:
function repeatStringNumTimes(str, num) {
if (num < 1) {
return "";
} else if (num === 1) {
return str;
} else {
return str + repeatStringNumTimes(str, num - 1);
}
}
Code Explanation:
- This solution uses recursion.
- We check if
num
is negative and return an empty string if true. - Then we check if it's equal to 1 and in that case we return the string itself.
- If not, we add the string to a call of our function with
num
being decreased by 1, which will add anotherstr
and another.. until eventuallynum
is 1. And return that whole process.