Skip to content

Instantly share code, notes, and snippets.

@prednaz
Created September 11, 2019 11:03
Show Gist options
  • Save prednaz/746497d74e61fdf0e8526798fda9f4e3 to your computer and use it in GitHub Desktop.
Save prednaz/746497d74e61fdf0e8526798fda9f4e3 to your computer and use it in GitHub Desktop.
list of ascending sub lists, version 1
ascending_sub_list :: Ord element => [element] -> [[element]]
ascending_sub_list = foldr append []
where
append :: Ord element => element -> [[element]] -> [[element]]
append element_new sub_list_list
| sub_list_list_head : sub_list_list_tail <- sub_list_list,
element_new <= head sub_list_list_head
= (element_new : sub_list_list_head) : sub_list_list_tail
| otherwise = [element_new] : sub_list_list
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment