< 99 Elm Problems

Extract a sublist from a list, starting and ending at specified indices (inclusive). Start counting the elements with 1.

import Html exposing (text)
import List

sublist : Int -> Int -> List a -> List a
-- your implementation goes here

main = 
  text <| toString <|
    sublist 3 7 [1..10]

Result:

[3, 4, 5, 6, 7]

Solutions

This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.