Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a = {2 3} * 2;
assert(isequal(a,{2 3 2 3}))
|
2 | Pass |
a = {[1 2] 3} * [2 3];
assert(isequal(a,{[1 2] 3 [1 2] 3 [1 2] 3; [1 2] 3 [1 2] 3 [1 2] 3}))
|
Given an unsigned integer x, find the largest y by rearranging the bits in x
525 Solvers
551 Solvers
100 Solvers
100 Solvers
26 Solvers