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
r =
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
r =
one + two
r =
one + two = three
|
Given a window, how many subsets of a vector sum positive
743 Solvers
177 Solvers
Generate a vector like 1,2,2,3,3,3,4,4,4,4
3610 Solvers
669 Solvers
126 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!