This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x=[ 1 1 1 2 2 3 3 3 3];
y=[10 52 12 58 21 43 89 27 98];
c={[10 52 12],[58 21],[43 89 27 98]};
assert(isequal(split_array(x,y),c))
|
2 | Pass |
x=1:5;
c=num2cell(1:5);
assert(isequal(split_array(x,x),c));
|
3 | Pass |
x=[1 1 1 1 1 2 3 3 3 3 3];
y='Hello world';
c={'Hello' ' ' 'world'}
assert(isequal(split_array(x,y),c));
c =
1×3 cell array
{'Hello'} {' '} {'world'}
|
482 Solvers
3967 Solvers
394 Solvers
724 Solvers
615 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!