Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
d1 = datenum('10-Nov-2010');
d2 = datenum('10-Feb-2011');
y_correct = {'30-Nov-2010','31-Dec-2010','31-Jan-2011'};
[y{1:3}]=month_ends(d1,d2);
assert(isequal(y,y_correct))
|
2 | Pass |
%%
d1 = datenum('31-Jan-2000');
d2 = datenum('10-Apr-2000');
y_correct = {'31-Jan-2000','29-Feb-2000','31-Mar-2000'};
[y{1:3}]=month_ends(d1,d2);
assert(isequal(y,y_correct))
|
962 Solvers
Least common multiple of many numbers
189 Solvers
110 Solvers
Rank of magic square (for beginners)
40 Solvers
Sum the numbers on the main diagonal
453 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!