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 |
x = 16; n=2
y_correct = 'true';
assert(isequal(Powerof(x,n),y_correct))
n =
2
[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 Powerof (line 2)
In ScoringEngineTestPoint1 (line 3)
In solutionTest (line 3)]
ans =
1
|
2 | Pass |
x = 14; n=2
y_correct = 'false';
assert(isequal(Powerof(x,n),y_correct))
n =
2
[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 Powerof (line 2)
In ScoringEngineTestPoint2 (line 3)
In solutionTest (line 5)]
ans =
1
|
3 | Pass |
x = 64; n=4
y_correct = 'true';
assert(isequal(Powerof(x,n),y_correct))
n =
4
[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 Powerof (line 2)
In ScoringEngineTestPoint3 (line 3)
In solutionTest (line 7)]
ans =
1
|
4 | Pass |
x = 625; n=5
y_correct = 'true';
assert(isequal(Powerof(x,n),y_correct))
n =
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 Powerof (line 2)
In ScoringEngineTestPoint4 (line 3)
In solutionTest (line 9)]
ans =
1
|
5 | Pass |
x = 15; n=5
y_correct = 'false';
assert(isequal(Powerof(x,n),y_correct))
n =
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 Powerof (line 2)
In ScoringEngineTestPoint5 (line 3)
In solutionTest (line 11)]
ans =
1
|
Find the longest sequence of 1's in a binary sequence.
2439 Solvers
Basics: 'Find the eigenvalues of given matrix
257 Solvers
152 Solvers
260 Solvers
Matlab Basics - Create a row vector
205 Solvers