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))
|
2 | Pass |
x = 2;
y_correct = 0.0027;
assert(isequal(bday_phenom(x),y_correct))
|
3 | Pass |
x = 5;
y_correct = 0.0271;
assert(isequal(bday_phenom(x),y_correct))
|
4 | Pass |
x = 10;
y_correct = 0.1169;
assert(isequal(bday_phenom(x),y_correct))
|
5 | Pass |
x = 20;
y_correct = 0.4114;
assert(isequal(bday_phenom(x),y_correct))
|
6 | Pass |
x = 30;
y_correct = 0.7063;
assert(isequal(bday_phenom(x),y_correct))
|
7 | Fail |
x = 50;
y_correct = 0.9703;
assert(isequal(bday_phenom(x),y_correct))
|
8 | Fail |
x = 366;
y_correct = 1;
assert(isequal(bday_phenom(x),y_correct))
|
9 | Fail |
x = 4873;
y_correct = 1;
assert(isequal(bday_phenom(x),y_correct))
|
Project Euler: Problem 10, Sum of Primes
556 Solvers
299 Solvers
Permute diagonal and antidiagonal
179 Solvers
134 Solvers
Try 1.5.4: Celsius to Fahrenheit
486 Solvers