This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
C = {'I','MATLAB'};
DELIMITER = {' love '}
S= 'I love MATLAB'
assert(isequal(your_fcn_name(C,DELIMITER),S))
DELIMITER =
' love '
S =
I love MATLAB
|
2 | Pass |
%%
c = {'one', 'two', 'three'};
DELIM = {' + ', ' = '}
S2= 'one + two = three'
assert(isequal(your_fcn_name(c,DELIM),S2))
DELIM =
' + ' ' = '
S2 =
one + two = three
|
5832 Solvers
831 Solvers
199 Solvers
1424 Solvers
219 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!