This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
%% summation
assert(isequal(foldl(@plus, 0, 1:100), 5050));
Error: Assertion failed.
|
2 | Fail |
%% summation 2
r = rand(1, 100);
y = foldl(@plus, 0, r);
yc = sum(r);
assert(abs(y - yc)/abs(y) < 1e-6);
Error: Assertion failed.
|
3 | Fail |
%% factorial
assert(isequal(foldl(@times, 1, 1:15), factorial(15)));
Error: Assertion failed.
|
4 | Fail |
%% find maximum
r = rand(1, 1000);
assert(isequal(foldl(@max, -Inf, r), max(r)));
Error: Assertion failed.
|
5 | Fail |
%%
assert(isequal(foldl(@(x_, y_) 2*x_ + y_, 4, 1:3), 43));
Error: Assertion failed.
|
6 | Fail |
%% handle 1
sumplusfive = foldl(@plus, 5);
assert(isequal(sumplusfive(1:100), 5055));
Error: Assertion failed.
|
7 | Fail |
%% handle 2
concat = foldl(@(x_, y_) [x_ y_]);
r1 = rand(1, 10);
r2 = rand(1, 10);
assert(isequal(concat(r1, r2), [r1 r2]));
Error: Assertion failed.
|
61 Solvers
88 Solvers
Who knows the last digit of pi?
557 Solvers
Remove NaNs and numbers adjacent to NaNs
64 Solvers
Generate N equally spaced intervals between -L and L
563 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!