Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 2 5];
y_correct = 10;
assert(isequal(array_prod(x),y_correct))
|
2 | Pass |
x = [10, 200];
y_correct = 2000;
assert(isequal(array_prod(x),y_correct))
|
3 | Pass |
x = [true, false];
y_correct = 0;
assert(isequal(array_prod(x),y_correct))
|
Given an unsigned integer x, find the largest y by rearranging the bits in x
781 Solvers
5016 Solvers
185 Solvers
616 Solvers
Matlab Basics - Create a row vector
277 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!