Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
year = 1902;
foms_correct = 2;
assert(isequal(day_counter( year ),foms_correct))
ans =
2
|
2 | Pass |
year = 2002;
foms_correct = 2;
assert(isequal(day_counter( year ),foms_correct))
ans =
2
|
3 | Pass |
year = 1996;
foms_correct = 3;
assert(isequal(day_counter( year ),foms_correct))
ans =
3
|
4 | Pass |
year = 1885;
foms_correct = 1;
assert(isequal(day_counter( year ),foms_correct))
ans =
1
|
5704 Solvers
Return the 3n+1 sequence for n
6169 Solvers
2980 Solvers
495 Solvers
147 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!