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]))
|
2401 Solvers
Maximum running product for a string of numbers
1112 Solvers
Replace NaNs with the number that appears to its left in the row.
2018 Solvers
Number of 1s in a binary string
2827 Solvers
Given a 4x4 matrix, swap the two middle columns
516 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!