< 99 Elm Problems

The Challenge

Find the last element of a list.

Test application

Implement lastElement in this test application.

module Main exposing (..)

import Html exposing (text)
import List
import Maybe

lastElement : List a -> Maybe a
lastElement list = 
  -- your implementation goes here
  Nothing

main =
  case lastElement [1,2,3,4] of
    Just a -> text (toString a)
    Nothing -> text "No element found"

Expected Result

4

Solutions

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