This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a=1;d=1;n=1;
y_correct = 1;
assert(isequal(harmonicSum(a,d,n),y_correct));
|
2 | Pass |
a=2;d=2;n=5;
y_correct = round(3.5746,-4);
assert(isequal(round(harmonicSum(a,d,n),-4),y_correct));
|
3 | Pass |
a=4;d=5;n=2;
y_correct = round(4.6667,-4);
assert(isequal(round(harmonicSum(a,d,n),-4),y_correct));
|
17486 Solvers
201 Solvers
Project Euler: Problem 8, Find largest product in a large string of numbers
315 Solvers
Sum the elements in either diagonal of a square matrix
178 Solvers
187 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!