Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1881;y_correct = 30;
assert(isequal(yearraey(x),y_correct))
y =
30
|
2 | Pass |
x = 2014;y_correct = 1;
assert(isequal(yearraey(x),y_correct))
y =
1
|
3 | Pass |
x = 2015;y_correct = 0;
assert(isequal(yearraey(x),y_correct))
y =
0
|
4 | Pass |
x = 606;y_correct = 27;
assert(isequal(yearraey(x),y_correct))
y =
27
|
5 | Pass |
x = 6006;y_correct = 71;
assert(isequal(yearraey(x),y_correct))
y =
71
|
6 | Pass |
x = 60006;y_correct = 369;
assert(isequal(yearraey(x),y_correct))
y =
369
|
7 | Pass |
k=zeros(1,15);
for n=1:15
y=2^n+2;
k(n)=yearraey(y);
end
y_correct=[1 1 5 3 11 7 23 15 47 31 95 63 191 127 383];
assert(isequal(k,y_correct))
y =
1
y =
1
y =
5
y =
3
y =
11
y =
7
y =
23
y =
15
y =
47
y =
31
y =
95
y =
63
y =
191
y =
127
y =
383
|
573 Solvers
5114 Solvers
254 Solvers
2731 Solvers
2039 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!