Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
mo = 1;
yr = 2014;
momat = makeCalendar(mo,yr);
momat_correct = [ ...
0 0 0 1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31 0];
assert(isequal(momat,momat_correct))
|
2 | Pass |
mo = 2;
yr = 2015;
momat = makeCalendar(mo,yr);
momat_correct = [ ...
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28];
assert(isequal(momat,momat_correct))
|
3 | Pass |
mo = 10;
yr = 2010;
momat = makeCalendar(mo,yr);
momat_correct = [ ...
0 0 0 0 0 1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
31 0 0 0 0 0 0];
assert(isequal(momat,momat_correct))
|
4 | Pass |
mo = 11;
yr = 1972;
momat = makeCalendar(mo,yr);
momat_correct = [0 0 0 1 2 3 4;5 6 7 8 9 10 11;12 13 14 15 16 17 18;19 20 21 22 23 24 25;26 27 28 29 30 0 0];
assert(isequal(momat,momat_correct))
|
1966 Solvers
650 Solvers
Sum the entries of each column of a matrix which satisfy a logical condition.
111 Solvers
357 Solvers
204 Solvers