Magic Squares
A challenge by
mousetail
Description
Print 100 magic squares.
A magic square is a square where each row, column, and diagonal must sum to the same value. In addition, each value in the matrix must be unique.
Additionally, each matrix must be distinct, and not be linear mapable to any other matrix. That means there must not exist a slope and offset so matrix1 * slope + offset == matrix2
.
Seperate each matrix by a double line break, and the values in each matrix by a space or tab. Separate rows with a single line break.
Matrix sizes must be between 3x3 and 6x6. You can mix and match if you want.
Leaderboard
Author | Score | ||
---|---|---|---|
#1 |
|
lukegustafson | 85 |
#2 |
|
mousetail | 104 |
#3 |
|
KasperKivimaeki | 106 |