Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
string = 'cab';
letters = 'abc';
digits = [9 0 6];
y_correct = [6 9 0];
assert(isequal(stringSubstitute(string, letters, digits),y_correct))
out =
0 0 0
out =
6 0 0
out =
6 9 0
out =
6 9 0
|
2 | Pass |
string = 'feed';
letters = 'def';
digits = [5 4 1];
y_correct = [1 4 4 5];
assert(isequal(stringSubstitute(string, letters, digits),y_correct))
out =
0 0 0 0
out =
1 0 0 0
out =
1 4 0 0
out =
1 4 4 0
out =
1 4 4 5
|
3 | Pass |
string = 'matlab';
letters = 'ablmt';
digits = [0 3 4 6 1];
y_correct = [6 0 1 4 0 3];
assert(isequal(stringSubstitute(string, letters, digits),y_correct))
out =
0 0 0 0 0 0
out =
6 0 0 0 0 0
out =
6 0 0 0 0 0
out =
6 0 1 0 0 0
out =
6 0 1 4 0 0
out =
6 0 1 4 0 0
out =
6 0 1 4 0 3
|
874 Solvers
Remove the two elements next to NaN value
411 Solvers
724 Solvers
232 Solvers
559 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!