99 个 Elm 问题/问题 6
外观
确定一个列表是否为回文,即从前往后或从后往前读取该列表时,得到的列表相同。
import Html exposing (text)
import List
isPalindrome : List a -> Bool
-- your implementation goes here
main =
isPalindrome [1,2,3,2,1] |> toString |> text
结果
True
确定一个列表是否为回文,即从前往后或从后往前读取该列表时,得到的列表相同。
import Html exposing (text)
import List
isPalindrome : List a -> Bool
-- your implementation goes here
main =
isPalindrome [1,2,3,2,1] |> toString |> text
结果
True