Problem 1643. BULLSEYE Part 3: Reference Problem 18 BULLSEYE

Given n (always odd), return output a that has concentric rings of the 69s and 0s around the center point. Examples:

 Input  n = 3
 Output a is [     69    69    69
                   69     0    69
                   69    69    69 ]
 Input  n = 5
 Output a is [   0     0     0     0     0
                 0    69    69    69     0
                 0    69     0    69     0
                 0    69    69    69     0
                 0     0     0     0     0]

Solution Stats

59.04% Correct | 40.96% Incorrect
Last Solution submitted on Dec 11, 2023

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers42

Suggested Problems

More from this Author16

Problem Tags

Community Treasure Hunt

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

Start Hunting!