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)
|
Find the longest sequence of 1's in a binary sequence.
3370 Solvers
Find the dimensions of a matrix
373 Solvers
Number of Even Elements in Fibonacci Sequence
665 Solvers
443 Solvers
2636 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!