Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
x = [2 4; 6 12];
y_correct = 6;
assert(isequal(your_fcn_name(x),y_correct))
|
2 | Fail |
x = [2 4; 6 8]
y_correct = 5;
assert(isequal(your_fcn_name(x),y_correct))
x =
2 4
6 8
|
Project Euler: Problem 1, Multiples of 3 and 5
1064 Solvers
441 Solvers
251 Solvers
247 Solvers
184 Solvers