Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = ['a', 'b', 'c'];
y = ['1', '2', '3'];
z_correct = 'a1b2c3';
assert(isequal(your_fcn_name(x,y),z_correct))
|
2 | Pass |
x = ['c', 'a', 'b', 'f'];
y = ['3', '1', '2', '0'];
z_correct = 'c3a1b2f0';
assert(isequal(your_fcn_name(x,y),z_correct))
|
3 | Pass |
x = ['c', '1', 'b', 'f'];
y = ['3', '1', '2', '0'];
z_correct = 'c311b2f0';
assert(isequal(your_fcn_name(x,y),z_correct))
|
2500 Solvers
151 Solvers
Construct a string from letters and counts
128 Solvers
Permute diagonal and antidiagonal
224 Solvers
90 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!