mirror of
https://github.com/correl/elm.git
synced 2024-11-24 11:09:56 +00:00
23 lines
401 B
Elm
23 lines
401 B
Elm
module Triangle exposing (rows)
|
|
|
|
import List
|
|
|
|
|
|
nextRow : List Int -> List Int
|
|
nextRow row =
|
|
List.map2 (+) (0 :: row) (row ++ [ 0 ])
|
|
|
|
|
|
rows : Int -> List (List Int)
|
|
rows n =
|
|
let
|
|
loop i row =
|
|
if i == n then
|
|
[]
|
|
else
|
|
row :: loop (i + 1) (nextRow row)
|
|
in
|
|
if n < 0 then
|
|
[]
|
|
else
|
|
loop 0 [ 1 ]
|