Question: Drop first and last elements (Answer must be in Haskell Programming language) Write a function dropFirstLast that takes a list and returns a list containing
Drop first and last elements (Answer must be in Haskell Programming language)
Write a function dropFirstLast that takes a list and returns a list containing the same elements in the same order except for the first and last elements. If the list has fewer than three elements, the result should be the empty list. I recommend coding this in terms of drop, take, and length. You also could use the slice function you wrote previously, but youd have to copy/paste its definition here. Examples: ghci> dropFirstLast [1..10] [2,3,4,5,6,7,8,9] ghci> dropFirstLast "smiley" "mile" ghci> dropFirstLast [2,4,6] [4]
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
