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
|
Remove any row in which a NaN appears
5980 Solvers
Find common elements in matrix rows
810 Solvers
Find the peak 3n+1 sequence value
792 Solvers
Create a function handle that reverses the input arguments of another function handle
118 Solvers
208 Solvers