This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
y_correct = 2;
assert(isequal(your_fcn_name(x),y_correct))
x = 5;
y_correct = 32;
assert(isequal(your_fcn_name(x),y_correct))
x = 8;
y_correct = 256;
assert(isequal(your_fcn_name(x),y_correct))
x = 11;
y_correct = 2048;
assert(isequal(your_fcn_name(x),y_correct))
x = 16;
y_correct = 65536;
assert(isequal(your_fcn_name(x),y_correct))
ans =
2
ans =
32
ans =
256
ans =
2048
ans =
65536
|
145 Solvers
437 Solvers
194 Solvers
Find Out sum of principal diagonal element of given matrix
151 Solvers
Matrix of almost all zeros, except for main diagonal
122 Solvers