Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = ['mat' char(24) 'lab'];
y_correct = 'matlab';
assert(isequal(lose_control(x),y_correct))
y =
'matlab'
|
2 | Pass |
x = ['math' char(32) 'lab'];
y_correct = 'math lab';
assert(isequal(lose_control(x),y_correct))
y =
'math lab'
|
3 | Pass |
x = ' ';
y_correct = ' ';
assert(isequal(lose_control(x),y_correct))
y =
' '
|
4 | Pass |
x = 'matlab';
x = regexprep(x,'tl','t\tl')
y_correct = 'matlab';
assert(isequal(lose_control(x),y_correct))
x =
'mat lab'
y =
'matlab'
|
5 | Pass |
x = char(1:50);
y_correct = char(32:50);
assert(isequal(lose_control(x),y_correct))
y =
' !"#$%&'()*+,-./012'
|
Find the alphabetic word product
2321 Solvers
1223 Solvers
168 Solvers
284 Solvers
3062 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!