Skip to content

Instantly share code, notes, and snippets.

@KKostya
Created July 25, 2018 13:43
Show Gist options
  • Save KKostya/178234e273c576e25d79d8ac795312b4 to your computer and use it in GitHub Desktop.
Save KKostya/178234e273c576e25d79d8ac795312b4 to your computer and use it in GitHub Desktop.
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