What does the following algorithm return? f(n){
itechmom1216
Question
What does the following algorithm return? f(n){ if (n< 2) return 1 else return f(n - 1) * n:
Details
Purchase An Answer Below
What does the following algorithm return? f(n){ if (n< 2) return 1 else return f(n - 1) * n: