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))
|
3 | Pass |
%%
x = 'stringX_';
num1 = 2;
n = 1;
y_correct = {'stringX_2'};
assert(isequal(rep_str(x,num1,n),y_correct))
|
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))
|
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))
|
Remove all the words that end with "ain"
1292 Solvers
Return unique values without sorting
588 Solvers
Generate N equally spaced intervals between -L and L
563 Solvers
177 Solvers
452 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!