BULLSEYE Part 2: Reference Problem 18 BULLSEYE - MATLAB Cody - MATLAB Central

Problem 1642. BULLSEYE Part 2: Reference Problem 18 BULLSEYE

Difficulty:Rate

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

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

Solution Stats

53.56% Correct | 46.44% Incorrect
Last Solution submitted on Feb 23, 2025

Problem Comments

Solution Comments

Show comments

Group

Basics - Binary Logic Image
Basics - Binary Logic
  • 10 Problems
  • 958 Finishers

Problem Recent Solvers130

Problem Tags

Community Treasure Hunt

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

Start Hunting!
Go to top of page