Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
tic
|
2 | Pass |
x = 5; y_correct = 5; assert(isequal(hamming1(x),y_correct))
|
3 | Pass |
x = 100; y_correct = 34; assert(isequal(hamming1(x),y_correct))
|
4 | Pass |
x = 123456; y_correct = 327; assert(isequal(hamming1(x),y_correct))
|
5 | Pass |
x = 10^13; y_correct = 4301; assert(isequal(hamming1(x),y_correct))
|
6 | Pass |
x=1:20; y=arrayfun(@(z) hamming1(z),2.^x);
y_correct=[2 4 7 12 19 27 38 52 68 87 110 137 167 201 240 284 332 386 446 511];
assert(isequal(y,y_correct));
tval=1000*toc
feval( @assignin,'caller','score',floor(min(5000,tval )) );
tval =
2.1420e+03
|
17468 Solvers
Similar Triangles - find the height of the tree
203 Solvers
277 Solvers
Find out missing number from a vector of 9 elements
245 Solvers
Celsius to Fahrenheit converter
388 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!