Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 2 3; 4 5 6;7 8 9];
y_correct = 40;
assert(isequal(AddMatrixLim(x),y_correct))
|
2 | Pass |
x= [1 5 6 7; 4 9 4 7; 9 4 2 1; 0 1 2 8]
y_correct = 51;
assert(isequal(AddMatrixLim(x),y_correct))
x =
1 5 6 7
4 9 4 7
9 4 2 1
0 1 2 8
|
Given an unsigned integer x, find the largest y by rearranging the bits in x
780 Solvers
Project Euler: Problem 2, Sum of even Fibonacci
835 Solvers
4331 Solvers
Duplicate each element of a vector.
518 Solvers
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
298 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!