99 个 Elm 问题/问题 15
外观
重复给定列表的每个元素指定次数。
import Html exposing (text)
import List
repeatElements : Int -> List a -> List a
-- your implementation goes here
main =
text <| toString <|
repeatElements 3 [1, 2, 3, 3]
结果
[1, 1, 1, 2, 2, 2, 3, 3, 3, 3, 3, 3]