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

Solution Stats

70 Solutions

24 Solvers

Last Solution submitted on Jan 03, 2026

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...