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 =
116.8230
|
1261 Solvers
given 3 sides, find area of this triangle
680 Solvers
Longest run of consecutive numbers
1656 Solvers
The Answer to Life, the Universe, and Everything
383 Solvers
367 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!