99 个 Elm 难题/问题 12
外观
解压缩问题 11 中生成的长度为运行时编码的列表。
import Html exposing (text)
import List
type Item a
= Single a
| Multiple Int a
decodeModified : List (Item a) -> List a
-- your implementation goes here
main = text <| toString <|
decodeModified [Multiple 3 'a', Single 'b', Multiple 3 'c', Single 'd', Multiple 5 'e']
结果
['a', 'a', 'a', 'b', 'c', 'c', 'd', 'e', 'e', 'e', 'e', 'e']