Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
n = 2;
A = binary_numbers(n);
assert(isequal(class(A), 'double'))
|
2 | Pass |
%%
n = 3;
A = binary_numbers(n);
assert(all(A(:) == 0 | A(:) == 1))
|
3 | Pass |
%%
n = 5;
A = binary_numbers(n);
assert(isequal(size(A),[32 5]))
|
4 | Pass |
%%
n = 10;
A = binary_numbers(n);
assert(isequal(size(unique(A,'rows'),1),1024))
|
5 | Pass |
%%
n = 1;
A = binary_numbers(n);
assert(isequal(A,[0;1]) || isequal(A,[1;0]))
|
What is the next step in Conway's Life?
639 Solvers
Is my wife right? Now with even more wrong husband
1241 Solvers
Arrange Vector in descending order
4076 Solvers
Who has power to do everything in this world?
318 Solvers
Area of an equilateral triangle
2759 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!