99 门榆树问题/问题 16
外观
< 99 门榆树问题
从列表中丢弃每一个第 N 个元素。
import Html exposing (text)
import List
dropEvery : Int -> List a -> List a
-- your implementation goes here
main = text <| toString <|
dropEvery 3 [1..10]
结果
[1, 2, 4, 5, 7, 8, 10]
从列表中丢弃每一个第 N 个元素。
import Html exposing (text)
import List
dropEvery : Int -> List a -> List a
-- your implementation goes here
main = text <| toString <|
dropEvery 3 [1..10]
结果
[1, 2, 4, 5, 7, 8, 10]