Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = string({'I','love','MATLAB'});
y_correct = {'I','love','MATLAB'};
assert(isequal(str2cell(x),y_correct))
|
2 | Pass |
x = string({'I','love','MATLAB';'I','love','Cody'});
y_correct = {'I','love','MATLAB'
'I','love','Cody'};
assert(isequal(str2cell(x),y_correct))
|
Remove the small words from a list of words.
672 Solvers
Project Euler: Problem 8, Find largest product in a large string of numbers
315 Solvers
Convert a vector into a number
503 Solvers
498 Solvers
Use a timetable to analyze a train timetable (Part 3)
43 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!