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))
ans =
4513
|
2 | Pass |
%%
x1 = '15-jan-1000';
x2 = '24-may-2012';
y_correct = 369755;
assert(isequal(countDays(x1,x2),y_correct))
ans =
369755
|
3 | Pass |
%%
x1 = '24-may-2013';
x2 = '24-may-2012';
y_correct = 365;
assert(isequal(countDays(x1,x2),y_correct))
ans =
365
|
3075 Solvers
4598 Solvers
2486 Solvers
641 Solvers
359 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!