Skip to content

Instantly share code, notes, and snippets.

@mikhailshilkov
Created December 19, 2018 22:58
Show Gist options
  • Save mikhailshilkov/0df5dd0361173b9eb4257266345d5e5f to your computer and use it in GitHub Desktop.
Save mikhailshilkov/0df5dd0361173b9eb4257266345d5e5f to your computer and use it in GitHub Desktop.
// Match list -> Product
let pickGift (candidates: Match list) =
candidates
|> List.sortByDescending (fun x -> x.Confidence)
|> List.head
|> (fun x -> x.Product)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment