This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
X='+68768686834554';
Y='+76574535435398';
Z_correct='-7805848600844';
assert(isequal(mysub(X,Y),Z_correct))
Z =
'-7805848600844'
|
2 | Pass |
X='+1';
Y='+2';
Z_correct ='-1';
assert(isequal(mysub(X,Y),Z_correct))
Z =
'-1'
|
3 | Pass |
X='+100';
Y='+20';
Z_correct ='+80';
assert(isequal(mysub(X,Y),Z_correct))
Z =
'+80'
|
262 Solvers
Matrix indexing with two vectors of indices
405 Solvers
Generate a vector like 1,2,2,3,3,3,4,4,4,4
1561 Solvers
Number of digits in an integer
271 Solvers
205 Solvers