Talk:Four sides of square: Difference between revisions

From Rosetta Code
Content added Content deleted
(the task)
 
mNo edit summary
Line 1:
==Task==
 
In case anyone is wondering what this task actually is, it's to createoutput a square matrix (preferably using a GUI?) where the four edges are filled with <code>1</code>, while the interior is filled with <code>0</code>. For example, for size = 5,
 
1 1 1 1 1

Revision as of 07:55, 18 February 2022

Task

In case anyone is wondering what this task actually is, it's to output a square matrix (preferably using a GUI?) where the four edges are filled with 1, while the interior is filled with 0. For example, for size = 5,

   1 1 1 1 1
   1 0 0 0 1
   1 0 0 0 1
   1 0 0 0 1
   1 1 1 1 1

--Chunes (talk) 07:54, 18 February 2022 (UTC)