Created
July 25, 2018 13:43
-
-
Save KKostya/178234e273c576e25d79d8ac795312b4 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
let get_min_range max lst = | |
List.fold_right ~base:max | |
(fun x a -> if x < a then x else a) lst |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment