С
Size: a a a
С
DE
DE
p
AS
DE
AS
DE
DE
javascript
Array.from({ length: 8**2 }).map((el, idx) => {
const row = parseInt(idx / 8) + 1
const col = idx % 8
return row % 2 === col % 2
})
S
javascript
Array.from({ length: 8**2 }).map((el, idx) => {
const row = parseInt(idx / 8) + 1
const col = idx % 8
return row % 2 === col % 2
})

АГ
javascript
Array.from({ length: 8**2 }).map((el, idx) => {
const row = parseInt(idx / 8) + 1
const col = idx % 8
return row % 2 === col % 2
})
С
С
С
С
НС
AS
AS
AS