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 |
C = {'abc' 'd' 'ef' 'ghij'};
iC = [1 1 1 2 3 3 4 4 4 4];
assert(isequal(cellSourceIndex(C),iC))
|
2 | Pass |
C = {[1 2 3] [] 1 [] 2};
iC = [1 1 1 3 5];
assert(isequal(cellSourceIndex(C),iC))
|
3 | Pass |
assert(isequal(cellSourceIndex(num2cell(ones(3))),1:9))
|
4 | Pass |
assert(isequal(cellSourceIndex({[] [] [] 1}),4))
|
5 | Pass |
assert(isempty(cellSourceIndex({})))
|
6 | Pass |
C = {struct('a',{1 2},'b',[]),struct('c',{1 2}),struct('d',{5 6 7 8})};
iC = [1 1 2 2 3 3 3 3];
assert(isequal(cellSourceIndex(C),iC))
|
Find the sum of all the numbers of the input vector
25592 Solvers
395 Solvers
61 Solvers
48 Solvers
344 Solvers