Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 1 1];
y ={[],[1]};
assert(isequal(your_fcn_name(x),y))
|
2 | Pass |
x=[1];
y={[],[1]};
assert(isequal(your_fcn_name(x),y))
|
3 | Pass |
x=[1 2 3];
y ={[],[1],[2],[3],[1 2],[1 3],[2 3],[1 2 3]};
assert(isequal(your_fcn_name(x),y))
|
4 | Pass |
x=[1 1 2 3];
y ={[],[1],[2],[3],[1 2],[1 3],[2 3],[1 2 3]};
assert(isequal(your_fcn_name(x),y))
|
5 | Pass |
x=[];
y={[]};
assert(isequal(your_fcn_name(x),y))
|
6 | Pass |
x=[nan nan]; % matlab considers them non-unique, but i don't
y={[],[nan]};
assert(isequalwithequalnans(your_fcn_name(x),y))
|
7 | Pass |
x=[nan nan 1];
y={[],[nan],[1],[nan 1]};
assert(isequalwithequalnans(your_fcn_name(x),y))
|
594 Solvers
Similar Triangles - find the height of the tree
203 Solvers
Remove entire row and column in the matrix containing the input values
163 Solvers
511 Solvers
Convert a vector of Integers into a matrix of binaries
65 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!