Created
June 15, 2016 14:57
-
-
Save lukewestby/920aa1e7a0bae3e63758466ada5a210b to your computer and use it in GitHub Desktop.
JortSort Elm Port
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module JortSort exposing (jortSort) | |
jortSort : List comparable -> Bool | |
jortSort list = | |
let | |
-- sort the list | |
sortedList = | |
List.sort list | |
in | |
-- compare to see if it was originally sorted | |
list == sortedList |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment