Problem 803. Twist 'n' Match

Given n and m, construct an n-by-n matrix a such that a, when rotated 90 degrees and compared with itself, matches itself in exactly m places.

The number of matches m is calculated as follows:

 m = nnz(rot90(a)==a)

Your answer a is clearly not unique. It must only meet the criteria stated above.

Examples:

 Input n = 2, m = 1
 One possible output: a = [ 1 2 
                            1 3 ]
 Input n = 3, m = 7
 One possible output: a = [ 0 1 1
                            1 1 1
                            1 1 1 ]

Solution Stats

33.21% Correct | 66.79% Incorrect
Last Solution submitted on Mar 27, 2024

Problem Comments

Solution Comments

Show comments


Problem Recent Solvers72

Problem Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!