Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = {'I','love','MATLAB'};
y_correct = string({'I','love','MATLAB'});
assert(isequal(cell2str(x),y_correct))
x =
1×3 string array
"I" "love" "MATLAB"
|
2 | Pass |
x = {'I', '', '', 'MATLAB'};
y_correct = string('I'); y_correct(4) = 'MATLAB';
assert(isequaln(cell2str(x),y_correct))
x =
1×4 string array
"I" <missing> <missing> "MATLAB"
|
3 | Pass |
x = {'I', '', 'MATLAB'
'', 'love', 'MATLAB'
'I', 'love', '' };
y_correct = [string('I'), string(NaN), string('MATLAB')
string(NaN), string('love'), string('MATLAB')
string('I'), string('love'), string(NaN) ];
assert(isequaln(cell2str(x),y_correct))
x =
3×3 string array
"I" <missing> "MATLAB"
<missing> "love" "MATLAB"
"I" "love" <missing>
|
647 Solvers
1046 Solvers
Generate a string like abbcccddddeeeee
155 Solvers
474 Solvers
Words Count: A String Array Approach
45 Solvers