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))
|
232 Solvers
746 Solvers
284 Solvers
224 Solvers
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
298 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!