跳至内容

99 个 Elm 难题/第 15 题/解决方案

来自维基文库,开放世界里的开放书籍

解决方案 1:使用 List.foldr

repeatElements n = List.foldr (\a b -> List.repeat n a ++ b) []
华夏公益教科书