Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = {'I','love','MATLAB'};
y_correct = strings(size(x));
[y_correct{:}] = x{:};
assert(isequal(cell2str(x),y_correct))
y =
1×3 string array
"I" "love" "MATLAB"
|
2 | Pass |
x = {'I', 'love', 'MATLAB'
'I', 'love', 'Cody'};
y_correct = strings(size(x));
[y_correct{:}] = x{:};
assert(isequal(cell2str(x),y_correct))
y =
2×3 string array
"I" "love" "MATLAB"
"I" "love" "Cody"
|
1900 Solvers
Remove the polynomials that have positive real elements of their roots.
629 Solvers
277 Solvers
Right Triangle Side Lengths (Inspired by Project Euler Problem 39)
511 Solvers
128 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!