jainaman224 / Algo_Ds_Notes

A comprehensive resource for learning and implementing algorithms and data structures. This repository includes detailed notes, complexity analysis, and code examples in C++, Java, Python, and more. Ideal for students, professionals, and those preparing for coding interviews.
GNU General Public License v3.0
2.24k stars 2.08k forks source link

Calculating factorial of large numbers using Python #3033

Closed saloniankita closed 4 years ago

saloniankita commented 4 years ago

Calculating factorial using recursion has been implemented in languages C, C++ and Java but hasn't been implemented in Python. I want to implement it in Python.