This is not two random rolls. The second number will never match the first, so the statistical distribution is not correct, although the test suite is not sophisticated enough to catch it.
^Agreed.
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)
|
1421 Solvers
1223 Solvers
Set some matrix elements to zero
290 Solvers
277 Solvers
Matlab Basics II - Count rows in a matrix
255 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!