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))
y =
4513
|
2 | Pass |
x1 = '15-jan-1000';
x2 = '24-may-2012';
y_correct = 369755;
assert(isequal(countDays(x1,x2),y_correct))
y =
369755
|
3 | Pass |
x1 = '24-may-2013';
x2 = '24-may-2012';
y_correct = 365;
assert(isequal(countDays(x1,x2),y_correct))
y =
365
|
Return a list sorted by number of occurrences
1504 Solvers
584 Solvers
Getting the indices from a matrice
360 Solvers
255 Solvers
511 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!