Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
N = 1;
P=1;
M=0;
hope_correct = 1;
assert(fate(N,P,M)>hope_correct*0.999)
|
2 | Pass |
N = 1;
P=0;
M=1;
hope_correct = 1;
assert(fate(N,P,M)>hope_correct*0.999)
|
3 | Pass |
N=1;
P=1;
M=1;
hope_correct = 0.3679;
assert(fate(N,P,M)>hope_correct*0.999)
|
4 | Pass |
N=2;
P=1;
M=1;
hope_correct = 0.3679;
assert(fate(N,P,M)>hope_correct*0.999)
|
5 | Pass |
N=2;
P=1;
M=2;
hope_correct = 0.1353;
assert(fate(N,P,M)<hope_correct*1.1)
|
6 | Pass |
N=2;
P=2;
M=2;
hope_correct = 0.0183;
assert(fate(N,P,M)<hope_correct*1.1)
%%
|
1143 Solvers
309 Solvers
Generate N equally spaced intervals between -L and L
563 Solvers
Output any real number that is neither positive nor negative
316 Solvers
Find the Oldest Person in a Room
5106 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!