Magic squares of doubly even order: Difference between revisions

Content added Content deleted
m (→‎{{header|Haskell}}: (Tweaked the point at which the 'magic series' starts, for more natural indexing)
Line 282:
=={{header|Haskell}}==
 
<lang Haskell>importmodule Data.ListDoubleEvenMagic (transpose)where
import Data.List (transpose)
magicSquare :: Int -> [[Int]]
Line 300 ⟶ 302:
-- yields the truth table that we need
| isPowerOf 2 n =
magicSeries $ floor (logBase 2 (fromIntegral sqr)) + 1
-- where n is not a power of 2, we can replicate a
-- minimum truth table, horizontally and vertically
| otherwise = (concat $ concat $ concat $
scale $ fmap scale $ splitEvery 4 $ magicSeries 54)
where scale = replicate $ quot n 4
 
 
------------------------------------------------------------------------
magicSeries :: Int -> [Bool]
magicSeries n
| n <= 1 = [True, False]
| otherwise = xs ++ (not <$> xs)
where