Find the sum of the digits in the number 100!

    let ans = {1I..100I} |> Seq.reduce(*) |> Problem16.sumOfDigits

Not much to do here, after having solved problem 16.

Advertisement