Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
assessFunctionAbsence({'regexp','regexpi','regexprep','str2num'},'FileName','counter.m')
|
2 | Pass |
f = counter(0,1);
assert(isequal(f(),0))
assert(isequal(f(),1))
assert(isequal(2,f()))
assert(isequal(3,f()))
|
3 | Pass |
f = counter(1,0);
assert(isequal(f(),1))
assert(isequal(f(),1))
assert(isequal(1,f()))
assert(isequal(1,f()))
|
4 | Pass |
f = counter(10,2);
assert(isequal(f(),10))
assert(isequal(f(),12))
assert(isequal(14,f()))
assert(isequal(16,f()))
|
5 | Pass |
f = counter(0,5);
y_correct = [0, 5, 10, 15, 20, 55];
assert(isequal([f() f() f() f() f() f()+f()],y_correct))
|
6 | Pass |
x0 = randi(10);
b = randi(10);
f = counter(x0,b);
y_correct = x0 + (0:1000)*b;
assert(isequal(arrayfun(@(n)f(),0:1000),y_correct))
|
Given an unsigned integer x, find the largest y by rearranging the bits in x
780 Solvers
Create a cell array out of a struct
508 Solvers
Simple equation: Annual salary
3779 Solvers
903 Solvers
Number of Even Elements in Fibonacci Sequence
665 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!