Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 0;
y_correct = [];
assert(isequal(invHilb2(x),y_correct))
|
2 | Pass |
%%
x = 1;
y_correct = 1;
assert(isequal(invHilb2(x),y_correct))
|
3 | Pass |
%%
x = 2;
y_correct = [16 36
36 144];
assert(isequal(invHilb2(x),y_correct))
|
4 | Pass |
%%
x = 3;
y_correct = [ 81 1296 900
1296 36864 32400
900 32400 32400];
assert(isequal(invHilb2(x),y_correct))
|
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))
|
1051 Solvers
329 Solvers
669 Solvers
Find the square of the sum of the digits of a number
119 Solvers
492 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!