mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-08 18:49:07 +01:00
4 lines
91 B
Haskell
4 lines
91 B
Haskell
module Kata where
|
|
|
|
pyramid :: Int -> [[Int]]
|
|
pyramid n = [[1 | _ <- [1..i]] | i <- [1..n]]
|