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
-
Make the vector [1 2 3 4 5 6 7 8 9 10]
52945 Solvers
-
14142 Solvers
-
Remove any row in which a NaN appears
8774 Solvers
-
Check to see if a Sudoku Puzzle is Solved
338 Solvers
-
Number of odd and even elements within matrix
160 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.