Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = {'I','love','MATLAB'};
y_correct = string({'I','love','MATLAB'});
assert(isequal(cell2str(x),y_correct))
ans =
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))
ans =
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))
ans =
3×3 string array
"I" <missing> "MATLAB"
<missing> "love" "MATLAB"
"I" "love" <missing>
|
298 Solvers
Project Euler: Problem 10, Sum of Primes
555 Solvers
Create a square matrix of multiples
330 Solvers
141 Solvers
424 Solvers