-**Factorial Finder** - The factorial of a positive integer *n* is defined as the product of the sequence , n-1, n-2, ...1 and the factorial of 0 is defined as being 1. Solve this using both loops and recursion. [[tel (Haskell)]](https://github.com/tel/Projects/blob/master/Numbers/Factorial.hs) [[rramchand (python)]](https://github.com/rramchand/Projects-Solutions/blob/master/factorial.py) [[ScottKolo (Go)]](https://github.com/ScottKolo/GoProjects/blob/master/Numbers/factorial.go) [[aysark (Java)]](https://github.com/aysark/Review/blob/master/Projects/src/FactorialFinder.java) [[JaredCubilla (Javascript)]](https://github.com/JaredCubilla/Projects/blob/master/Javascript/numbers/factorialFinder.js) [[turlapatykaushik(Python)]](https://github.com/turlapatykaushik/Programs-and-codes/blob/master/problems/factorial.py) [[Josenberg (Ruby)]](https://github.com/josenberg/factorial_ruby/blob/master/factorial_finder.rb) [[melvin0008(SML)]](https://github.com/melvin0008/FactorialComparer/blob/master/fact.sml)[[melvin0008 (Python)]](https://github.com/melvin0008/FactorialComparer/blob/master/fact.py)[[melvin0008(haskell)]](https://github.com/melvin0008/FactorialComparer/blob/master/fact.hs)[[melvin0008 (Julia)]](https://github.com/melvin0008/FactorialComparer/blob/master/fact.jl) [[hkuchampudi (Java)]](https://github.com/hkuchampudi/MegaProject_Solutions/blob/master/Numbers/factorial_finder.java) [[kvsingh (Python)]](https://github.com/kvsingh/python-practice/blob/master/factorial.py)
0 commit comments