99 道榆树问题/问题 4
外观
< 99 道榆树问题
Elm 提供了函数 List.length
。请查看是否可以实现它。
import Html exposing (text)
import List
myLength: List a -> Int
-- your implementation goes here
main =
text <| toString <| myLength[1,2,3,4,3,2,1]
结果
7
Elm 提供了函数 List.length
。请查看是否可以实现它。
import Html exposing (text)
import List
myLength: List a -> Int
-- your implementation goes here
main =
text <| toString <| myLength[1,2,3,4,3,2,1]
结果
7