Constructions that use feval or eval are used to cheat with cody. This test-suite tries to avoid that trick.
The goal of this challenge is to create a numeric pyramid with size n*n, starting with 1 in the upper left corner, and cycling clockwise until the center, by every step incrementing with one. It is not allowed to use eval or feval statements to get a lower node-count. Neither are regexp, regexprep, regexpi, eval, evalc, evalin, nor inline allowed.
For example:
n = 3;
ans =
1 2 3
8 9 4
7 6 5
n = 6;
ans =
1 2 3 4 5 6
20 21 22 23 24 7
19 32 33 34 25 8
18 31 36 35 26 9
17 30 29 28 27 10
16 15 14 13 12 11
Solution Stats
Problem Comments
4 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers44
Suggested Problems
-
2011 Solvers
-
Find common elements in matrix rows
2713 Solvers
-
Remove the polynomials that have positive real elements of their roots.
1740 Solvers
-
Getting the absolute index from a matrix
256 Solvers
-
Right Triangle Side Lengths (Inspired by Project Euler Problem 39)
2042 Solvers
More from this Author31
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
I can't get it to read my solution (which passes the test when I try it on my own computer).
Same problem.
I also had the same problem
The test suite has been updated to check for restricted functions with new test cases being added as well.