I wrote this clunky function that works but is not optimal. What is a good way to write a recursive function with memoization to compute factorials in F#? The function can return a dictionary type data structure with the results, or store them in a variable like this function.
open System.Collections.Generic
let factorials = Dictionary<int, int>()
factorials.Add(1, 1)
let rec factorial n =
if n <= 1 then 1
else
match factorials.TryGetValue(n) with
| true, _ -> n * factorial(n-1)
| false, _ ->
factorials.Add(n, n * factorial(n-1))
n * factorial(n-1)
let a = factorial 9