Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 0;
y_correct = [];
assert(isequal(invHilb2(x),y_correct))
ans =
[]
|
2 | Pass |
x = 1;
y_correct = 1;
assert(isequal(invHilb2(x),y_correct))
ans =
1
|
3 | Pass |
x = 2;
y_correct = [16 36
36 144];
assert(isequal(invHilb2(x),y_correct))
ans =
16 36
36 144
|
4 | Pass |
x = 3;
y_correct = [ 81 1296 900
1296 36864 32400
900 32400 32400];
assert(isequal(invHilb2(x),y_correct))
ans =
81 1296 900
1296 36864 32400
900 32400 32400
|
5 | Pass |
x = 4;
y_correct = [ 256 14400 57600 19600
14400 1440000 7290000 2822400
57600 7290000 41990400 17640000
19600 2822400 17640000 7840000];
assert(isequal(invHilb2(x),y_correct))
ans =
256 14400 57600 19600
14400 1440000 7290000 2822400
57600 7290000 41990400 17640000
19600 2822400 17640000 7840000
|
Given an unsigned integer x, find the largest y by rearranging the bits in x
780 Solvers
651 Solvers
Back to basics 9 - Indexed References
392 Solvers
Sum of diagonal of a square matrix
1327 Solvers
462 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!