转到内容

99 个 Elm 问题/问题 15

取自 Wikibooks,面向开放世界的开放书籍

重复给定列表的每个元素指定次数。

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]

解决方案

华夏公益教科书