This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
filetext = fileread('rep_str.m');
assert(isempty(strfind(filetext, 'for')))
assert(isempty(strfind(filetext, 'while')))
|
2 | Pass |
x = 'string_';
num1 = 6;
n = 3;
y_correct = {'string_6'
'string_7'
'string_8'};
assert(isequal(rep_str(x,num1,n),y_correct))
y =
3×1 cell array
{'string_6'}
{'string_7'}
{'string_8'}
|
3 | Pass |
x = 'stringX_';
num1 = 2;
n = 1;
y_correct = {'stringX_2'};
assert(isequal(rep_str(x,num1,n),y_correct))
y =
1×1 cell array
{'stringX_2'}
|
4 | Pass |
x = 'stringA_';
num1 = 8;
n = 4;
y_correct = {'stringA_8'
'stringA_9'
'stringA_10'
'stringA_11'};
assert(isequal(rep_str(x,num1,n),y_correct))
y =
4×1 cell array
{'stringA_8' }
{'stringA_9' }
{'stringA_10'}
{'stringA_11'}
|
5 | Pass |
x = 'strM_';
num1 = 0;
n = 5;
y_correct = {'strM_0'
'strM_1'
'strM_2'
'strM_3'
'strM_4'};
assert(isequal(rep_str(x,num1,n),y_correct))
y =
5×1 cell array
{'strM_0'}
{'strM_1'}
{'strM_2'}
{'strM_3'}
{'strM_4'}
|
14191 Solvers
1166 Solvers
210 Solvers
169 Solvers
808 Solvers