Get a sublist in Haskell

前端 未结 4 2072
死守一世寂寞
死守一世寂寞 2021-02-18 20:50

Probably an easy one, but I\'ve looked through the docs and googled for examples and I\'m still not sure of the answer.

If I have a list like this:

[1,2,         


        
4条回答
  •  粉色の甜心
    2021-02-18 21:33

    Hmmm, not very practical, but maybe it can be improved?

    (\(x,y) -> if 4 <= y && y <= 9 then [x] else []) =<< zip [1,2,3,4,5,6,7,8,9] [0..]
    

提交回复
热议问题