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))
ans =
'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))
ans =
'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))
ans =
'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))
ans =
'strM_0'
'strM_1'
'strM_2'
'strM_3'
'strM_4'
|
Sort a list of complex numbers based on far they are from the origin.
4326 Solvers
Increment a number, given its digits
562 Solvers
Getting the indices from a matrice
360 Solvers
Detect a number and replace with two NaN's
178 Solvers
Join Strings with Multiple Different Delimiters
83 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!