Skip to content

Instantly share code, notes, and snippets.

@larsw
Created May 28, 2014 19:41
Show Gist options
  • Select an option

  • Save larsw/6b762382b4d05140ab95 to your computer and use it in GitHub Desktop.

Select an option

Save larsw/6b762382b4d05140ab95 to your computer and use it in GitHub Desktop.
let rec getMaxOrder0 number order =
match number with
| _ when number < (pown 26 order) -> getMaxOrder0 number order + 1
| _ -> order
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment