This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 3;
y_correct = 1;
assert(isequal(normie(n),y_correct))
ans =
1
|
2 | Pass |
n = 23;
y_correct = 289329;
assert(isequal(normie(n),y_correct))
ans =
289329
|
3 | Pass |
n = 36;
y_correct = 797691075;
assert(isequal(normie(n),y_correct))
ans =
797691075
|
Project Euler: Problem 6, Natural numbers, squares and sums.
785 Solvers
Similar Triangles - find the height of the tree
156 Solvers
Find the largest value in the 3D matrix
899 Solvers
Remove the two elements next to NaN value
311 Solvers
Area of an equilateral triangle
1708 Solvers