Created
September 11, 2019 11:03
-
-
Save prednaz/746497d74e61fdf0e8526798fda9f4e3 to your computer and use it in GitHub Desktop.
list of ascending sub lists, version 1
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
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