Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 2;
A = binary_numbers(n);
assert(isequal(class(A), 'double'))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In binary_numbers (line 2)
In ScoringEngineTestPoint1 (line 2)
In solutionTest (line 3)]
|
2 | Pass |
n = 3;
A = binary_numbers(n);
assert(all(A(:) == 0 | A(:) == 1))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In binary_numbers (line 2)
In ScoringEngineTestPoint2 (line 2)
In solutionTest (line 5)]
|
3 | Pass |
n = 5;
A = binary_numbers(n);
assert(isequal(size(A),[32 5]))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In binary_numbers (line 2)
In ScoringEngineTestPoint3 (line 2)
In solutionTest (line 7)]
|
4 | Pass |
n = 10;
A = binary_numbers(n);
assert(isequal(size(unique(A,'rows'),1),1024))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In binary_numbers (line 2)
In ScoringEngineTestPoint4 (line 2)
In solutionTest (line 9)]
|
5 | Pass |
n = 1;
A = binary_numbers(n);
assert(isequal(A,[0;1]) || isequal(A,[1;0]))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In binary_numbers (line 2)
In ScoringEngineTestPoint5 (line 2)
In solutionTest (line 11)]
|
Determine whether a vector is monotonically increasing
11925 Solvers
6283 Solvers
347 Solvers
352 Solvers
414 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!