Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x1 = '15-jan-2000';
x2 = '24-may-2012';
y_correct = 4513;
assert(isequal(countDays(x1,x2),y_correct))
|
2 | Pass |
x1 = '15-jan-1000';
x2 = '24-may-2012';
y_correct = 369755;
assert(isequal(countDays(x1,x2),y_correct))
|
3 | Pass |
x1 = '24-may-2013';
x2 = '24-may-2012';
y_correct = 365;
assert(isequal(countDays(x1,x2),y_correct))
|
Increment a number, given its digits
562 Solvers
Back to basics 3 - Temp Directory
328 Solvers
The Answer to Life, the Universe, and Everything
383 Solvers
321 Solvers
489 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!