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 |
w=0;
for k=1:10^3
w=w+rndpi(1);
end
assert(w<1000)
|
2 | Pass |
w=0;
for k=1:10^3
w=w+rndpi(1)^2;
end
assert(w>10^3)
|
3 | Pass |
w=0;
for k=1:10^3
w=min(w,rndpi(1));
end
assert(w<-pi*0.9)
assert(w>-pi*1.1)
|
354 Solvers
261 Solvers
413 Solvers
Help the Patriots get to the Super Bowl
114 Solvers
find the surface area of a cube
214 Solvers