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))
ans =
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))
ans =
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))
ans =
6 0 1 4 0 3
|
Reverse the Words (not letters) of a String
297 Solvers
Find perfect placement of non-rotating dominoes (easier)
240 Solvers
Arrange vector in ascending order
624 Solvers
MATCH THE STRINGS (2 CHAR) very easy
250 Solvers
525 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!