Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n=5
y_correct=[27 54 36]
assert(isequal(cube_slices(n),y_correct))
n =
5
y_correct =
27 54 36
y =
27 54 36
|
2 | Pass |
n=3
y_correct=[1 6 12]
assert(isequal(cube_slices(n),y_correct))
n =
3
y_correct =
1 6 12
y =
1 6 12
|
3 | Pass |
n=7
y_correct=[125 150 60]
assert(isequal(cube_slices(n),y_correct))
n =
7
y_correct =
125 150 60
y =
125 150 60
|
Find common elements in matrix rows
1231 Solvers
337 Solvers
Project Euler: Problem 9, Pythagorean numbers
282 Solvers
Check if number exists in vector
4465 Solvers
Change the sign of even index entries of the reversed vector
296 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!