Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = ['mat' char(24) 'lab'];
y_correct = 'matlab';
assert(isequal(lose_control(x),y_correct))
ans =
'matlab'
|
2 | Pass |
x = ['math' char(32) 'lab'];
y_correct = 'math lab';
assert(isequal(lose_control(x),y_correct))
ans =
'math lab'
|
3 | Pass |
x = ' ';
y_correct = ' ';
assert(isequal(lose_control(x),y_correct))
ans =
' '
|
4 | Pass |
x = 'matlab';
x = regexprep(x,'tl','t\tl')
y_correct = 'matlab';
assert(isequal(lose_control(x),y_correct))
x =
'mat lab'
ans =
'matlab'
|
5 | Pass |
x = char(1:50);
y_correct = char(32:50);
assert(isequal(lose_control(x),y_correct))
ans =
' !"#$%&'()*+,-./012'
|
2197 Solvers
962 Solvers
579 Solvers
The sum of the numbers in the vector
426 Solvers
321 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!