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))
|
Return the 3n+1 sequence for n
6168 Solvers
1091 Solvers
819 Solvers
Deleting an element in a matrix
325 Solvers
254 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!