Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 3 6 9 11];
y_correct = [1 3 6 9 11; 0 3 6 9 11; 0 0 6 9 11; 0 0 0 9 11; 0 0 0 0 11]
assert(isequal(upMat(x),y_correct))
y_correct =
1 3 6 9 11
0 3 6 9 11
0 0 6 9 11
0 0 0 9 11
0 0 0 0 11
|
2 | Pass |
x = [1 2 3 4 5];
y_correct = [1 2 3 4 5; 0 2 3 4 5; 0 0 3 4 5; 0 0 0 4 5; 0 0 0 0 5]
assert(isequal(upMat(x),y_correct))
y_correct =
1 2 3 4 5
0 2 3 4 5
0 0 3 4 5
0 0 0 4 5
0 0 0 0 5
|
3 | Pass |
x = [10 9 8];
y_correct = [10 9 8; 0 9 8; 0 0 8]
assert(isequal(upMat(x),y_correct))
y_correct =
10 9 8
0 9 8
0 0 8
|
Given an unsigned integer x, find the largest y by rearranging the bits in x
780 Solvers
216 Solvers
505 Solvers
Is this triangle right-angled?
2394 Solvers
43 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!