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)
|
Is my wife right? Now with even more wrong husband
1145 Solvers
Back to basics 3 - Temp Directory
277 Solvers
Back to basics 16 - byte order
149 Solvers
The sum of the numbers in the vector
341 Solvers
Matlab Basics - Absolute Value
272 Solvers