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))
|
900 Solvers
Find common elements in matrix rows
1231 Solvers
394 Solvers
530 Solvers
615 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!