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 |
%%
n = 1;
y_correct ='1 Jan';
assert(isequal(day(n),y_correct))
ans =
1 Jan
|
2 | Pass |
%%
n = 35;
y_correct ='4 Feb';
assert(isequal(day(n),y_correct))
ans =
4 Feb
|
3 | Pass |
%%
n = 82;
y_correct ='23 Mar';
assert(isequal(day(n),y_correct))
ans =
23 Mar
|
First non-zero element in each column
593 Solvers
242 Solvers
299 Solvers
217 Solvers
3072 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!