This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
d_in = '22-Oct-2014';
m_correct = 6;
m_test = monthsUntilMatch(d_in);
assert(isequal(m_test,m_correct))
ans =
6
|
2 | Pass |
d_in = '2-Jul-2014';
m_correct = 14;
m_test = monthsUntilMatch(d_in);
assert(isequal(m_test,m_correct))
ans =
14
|
3 | Pass |
d_in = '12-May-2011';
m_correct = 8;
m_test = monthsUntilMatch(d_in);
assert(isequal(m_test,m_correct))
ans =
8
|
4 | Pass |
d_in = '14-Jul-1789';
m_correct = 14;
m_test = monthsUntilMatch(d_in)
assert(isequal(m_test,m_correct))
ans =
14
m_test =
14
|
5 | Pass |
d_in = '31-Dec-1999';
m_correct = 3;
m_test = monthsUntilMatch(d_in)
assert(isequal(m_test,m_correct))
ans =
3
m_test =
3
|
Select every other element of a vector
16228 Solvers
14983 Solvers
398 Solvers
342 Solvers
240 Solvers