Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 1;
y_correct = 1;
assert(isequal(arr(x),y_correct))
ans =
1
ans =
1
|
2 | Pass |
%%
x = 3;
y_correct = [1 0; 0 1; 1 0];
assert(isequal(arr(x),y_correct))
ans =
1 0
0 1
0 0
ans =
1 0
0 1
1 0
|
3 | Pass |
%%
x = 5;
y_correct = [1 0 0; 0 1 0; 0 0 1; 0 1 0; 1 0 0];
assert(isequal(arr(x),y_correct))
ans =
1 0 0
0 1 0
0 0 1
0 0 0
0 0 0
ans =
1 0 0
0 1 0
0 0 1
0 1 0
1 0 0
|
960 Solvers
Given an unsigned integer x, find the largest y by rearranging the bits in x
524 Solvers
107 Solvers
Back to basics 17 - white space
209 Solvers
Back to basics 20 - singleton dimensions
225 Solvers