Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
for k=1:30
N = randi(1701034);
tic;
S = sum(1:N);
elapsedSum = toc;
tic;
Y = performance(N);
elapsedPerf = toc;
assert(isequal(S,Y),'Not equal sums');
assert(elapsedPerf < elapsedSum,'Not performing better than sum(1:N)');
end
|
2401 Solvers
2183 Solvers
Find the two most distant points
1628 Solvers
Implement simple rotation cypher
943 Solvers
320 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!