comments modified

This commit is contained in:
Sahil Afrid Farookhi 2021-04-28 15:02:48 +05:30
parent 9434ab9dc9
commit 12b8ffd162

View file

@ -3,7 +3,7 @@
# Mathematical representation: n! = n * (n - 1) * (n - 2) * ... * 1
#
# Non-recursive approach
# Non-recursive and non-iterative approach
#
def factorial(number)