function myOutput = rep_str_3(string1, string2, num1, num2, n)
function desiredOutput = rep_str_3('string1', 'STRING2', 0, 10, 2)
desiredOutput= { 'string1_0' 'STRING2_10' 'string1_1' 'STRING2_11'}
Related challenges : Repeat string n times and Repeat string n times -2
why this is an incorrect solution?
simply add <> at the end of your code and it will work
2234 Solvers
Reverse the Words (not letters) of a String
243 Solvers
Test if a Number is a Palindrome without using any String Operations
157 Solvers
Determine the number of odd integers in a vector
321 Solvers
Calculate the derivative of a polynomial
139 Solvers
Solution 1539282
Neat. :)