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 |
x = 1;
y_correct = 0;
assert(isequal(bday_phenom(x),y_correct))
ans =
0
|
2 | Pass |
x = 2;
y_correct = 0.0027;
assert(isequal(bday_phenom(x),y_correct))
ans =
0.0027
|
3 | Pass |
x = 5;
y_correct = 0.0271;
assert(isequal(bday_phenom(x),y_correct))
ans =
0.0271
|
4 | Pass |
x = 10;
y_correct = 0.1169;
assert(isequal(bday_phenom(x),y_correct))
ans =
0.1169
|
5 | Pass |
x = 20;
y_correct = 0.4114;
assert(isequal(bday_phenom(x),y_correct))
ans =
0.4114
|
6 | Pass |
x = 30;
y_correct = 0.7063;
assert(isequal(bday_phenom(x),y_correct))
ans =
0.7063
|
7 | Pass |
x = 50;
y_correct = 0.9703;
assert(isequal(bday_phenom(x),y_correct))
ans =
0.9703
|
8 | Pass |
x = 366;
y_correct = 1;
assert(isequal(bday_phenom(x),y_correct))
ans =
1
|
9 | Pass |
x = 4873;
y_correct = 1;
assert(isequal(bday_phenom(x),y_correct))
ans =
1
|
740 Solvers
223 Solvers
Determine the number of odd integers in a vector
435 Solvers
387 Solvers
480 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!