Create lambda function which calculates factorial recursively

Lambdas can’t call themselves, so it’s not easily doable. You can create the usual named function and call it recursively by name.

Leave a Comment