Magic squares of doubly even order: Difference between revisions

m
→‎JS ES6: (Restored the testing of three orders – 4, 8, 12)
m (→‎JS ES6: (Adjusted the point at which the truth series starts – simplifies the indexing expressions))
m (→‎JS ES6: (Restored the testing of three orders – 4, 8, 12))
Line 539:
//return doubleEvenMagicSquare(8)
 
return [4, 8, 12]
.map(n => {
const lines = doubleEvenMagicSquare(n);
9,659

edits