Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1024;
b = 2;
y_correct = 10;
assert(isequal(logb(x,b),y_correct))
[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 logb (line 2)
In ScoringEngineTestPoint1 (line 4)
In solutionTest (line 3)]
|
2 | Pass |
x = 25;
b = 5;
y_correct = 2;
assert(isequal(logb(x,b),y_correct))
[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 logb (line 2)
In ScoringEngineTestPoint2 (line 4)
In solutionTest (line 5)]
|
3 | Pass |
x = 10000;
b = 10;
y_correct = 4;
assert(isequal(logb(x,b),y_correct))
[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 logb (line 2)
In ScoringEngineTestPoint3 (line 4)
In solutionTest (line 7)]
|
Find the longest sequence of 1's in a binary sequence.
3370 Solvers
1163 Solvers
309 Solvers
331 Solvers
1097 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!