Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = ['mat' char(24) 'lab'];
y_correct = 'matlab';
assert(isequal(lose_control(x),y_correct))
|
2 | Pass |
x = ['math' char(32) 'lab'];
y_correct = 'math lab';
assert(isequal(lose_control(x),y_correct))
|
3 | Pass |
x = ' ';
y_correct = ' ';
assert(isequal(lose_control(x),y_correct))
|
4 | Pass |
x = 'matlab';
x = regexprep(x,'tl','t\tl')
y_correct = 'matlab';
assert(isequal(lose_control(x),y_correct))
x =
'mat lab'
|
5 | Pass |
x = char(1:50);
y_correct = char(32:50);
assert(isequal(lose_control(x),y_correct))
|
1600 Solvers
1159 Solvers
Find state names that start with the letter N
598 Solvers
746 Solvers
260 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!