Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
y_correct = '0100';
assert(isequal(excess_3(x),y_correct))
y =
'0100'
|
2 | Pass |
x = 2;
y_correct = '0101';
assert(isequal(excess_3(x),y_correct))
y =
'0101'
|
3 | Pass |
x = 10;
y_correct = '1101';
assert(isequal(excess_3(x),y_correct))
y =
'1101'
|
4 | Pass |
x = 5;
y_correct = '1000';
assert(isequal(excess_3(x),y_correct))
y =
'1000'
|
5 | Pass |
x = 0;
y_correct = '0011';
assert(isequal(excess_3(x),y_correct))
y =
'0011'
|
Return elements unique to either input
550 Solvers
Matrix which contains the values of an other matrix A at the given locations.
214 Solvers
Sum the numbers on the main diagonal
453 Solvers
Calculate the derivative of a polynomial
168 Solvers
314 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!