Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x1 = zeros(1,6000);
x2 = zeros(1,6000);
for ii = 1:6000
[x1(ii),x2(ii)] = rollDice();
end
numCt = sum( bsxfun( @eq, x1, (1:6)' ), 2 ) + sum( bsxfun( @eq, x2, (1:6)' ), 2 );
assert(all(round(numCt/200) == 10) && sum(numCt) == 12000)
|
1312 Solvers
What is the distance from point P(x,y) to the line Ax + By + C = 0?
209 Solvers
Create a vector whose elements depend on the previous element
290 Solvers
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
229 Solvers
313 Solvers