99 个 Elm 问题/第 14 个问题
外观
复制列表中的每个元素。
import Html exposing (text)
import List
duplicate : List a -> List a
-- your implementation goes here
main =
text <| toString <|
duplicate [1, 2, 3, 5, 8, 8]
结果
[1, 1, 2, 2, 3, 3, 5, 5, 8, 8, 8, 8]