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)
|
given 3 sides, find area of this triangle
600 Solvers
Project Euler: Problem 6, Natural numbers, squares and sums.
785 Solvers
451 Solvers
Sum of first n terms of a harmonic progression
190 Solvers
Compute a dot product of two vectors x and y
645 Solvers