This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = {'a','b','c'};
y_correct = {'a','*','b','*','c'};
assert(isequal(your_fcn_name(x),y_correct))
|
2 | Pass |
x = {'-','+','='};
y_correct = {'-','*','+','*','='};
assert(isequal(your_fcn_name(x),y_correct))
|
3 | Pass |
x = {'Q','W','E','R','T','Y'};
y_correct = {'Q','*','W','*','E','*','R','*','T','*','Y'};
assert(isequal(your_fcn_name(x),y_correct))
|
4 | Pass |
x = {'1','2','3','4','5'};
y_correct = {'1','*','2','*','3','*','4','*','5'};
assert(isequal(your_fcn_name(x),y_correct))
|
1737 Solvers
190 Solvers
Determine the length of a string of characters
122 Solvers
409 Solvers
172 Solvers