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 =
1×1 cell array
{' love '}
S =
'I love MATLAB'
c =
'I love MATLAB'
|
2 | Pass |
c = {'one', 'two', 'three'};
DELIM = {' + ', ' = '}
S2= 'one + two = three'
assert(isequal(your_fcn_name(c,DELIM),S2))
DELIM =
1×2 cell array
{' + '} {' = '}
S2 =
'one + two = three'
c =
'one + two = three'
|
3 | Pass |
c = {'First sentence', 'Second sentence', 'Third sentence.'};
DELIM = {'. ', '. '}
S2= 'First sentence. Second sentence. Third sentence.'
assert(isequal(your_fcn_name(c,DELIM),S2))
DELIM =
1×2 cell array
{'. '} {'. '}
S2 =
'First sentence. Second sentence. Third sentence.'
c =
'First sentence. Second sentence. Third sentence.'
|
4 | Pass |
c = {'Have you ', 'ever had ', 'someone continuously ', 'interrupting you?'};
DELIM = {'(HEY!) ', '(BOO!) ', '(LOOK OVER THERE!) '}
S2= 'Have you (HEY!) ever had (BOO!) someone continuously (LOOK OVER THERE!) interrupting you?'
assert(isequal(your_fcn_name(c,DELIM),S2))
DELIM =
1×3 cell array
{'(HEY!) '} {'(BOO!) '} {'(LOOK OVER THERE!) '}
S2 =
'Have you (HEY!) ever had (BOO!) someone continuously (LOOK OVER THERE!) interrupting you?'
c =
'Have you (HEY!) ever had (BOO!) someone continuously (LOOK OVER THERE!) interrupting you?'
|
5 | Pass |
c = {'My first ', 'name ', 'is ', 'Tom.'};
DELIM = {'child has a ', 'that ', 'not '}
S2= 'My first child has a name that is not Tom.'
assert(isequal(your_fcn_name(c,DELIM),S2))
DELIM =
1×3 cell array
{'child has a '} {'that '} {'not '}
S2 =
'My first child has a name that is not Tom.'
c =
'My first child has a name that is not Tom.'
|
344 Solvers
106 Solvers
Number of digits in an integer
271 Solvers
403 Solvers
Count decimal digits of a number
133 Solvers