Skip to content

Commit 8ef960b

Browse files
Code refactor
1 parent ae8d50c commit 8ef960b

File tree

1 file changed

+14
-9
lines changed

1 file changed

+14
-9
lines changed
+14-9
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,26 @@
1-
Factorial of a non-negative integer, is multiplication of all integers smaller than or equal to n. For example factorial of 6 is 6*5*4*3*2*1 which is 720.
1+
"""
2+
Factorial of a non-negative integer, is multiplication of
3+
all integers smaller than or equal to n.
4+
For example factorial of 6 is 6*5*4*3*2*1 which is 720.
5+
"""
26

7+
"""
38
Recursive:
4-
# Python 3 program to find
5-
# factorial of given number
9+
Python3 program to find factorial of given number
10+
"""
611
def factorial(n):
712

813
# single line to find factorial
914
return 1 if (n==1 or n==0) else n * factorial(n - 1);
1015

1116
# Driver Code
1217
num = 5;
13-
print("Factorial of",num,"is",
14-
factorial((num))
18+
print("Factorial of",num,"is", factorial((num)))
19+
20+
"""
1521
Iterative:
16-
# Python 3 program to find
17-
# factorial of given number
22+
Python 3 program to find factorial of given number.
23+
"""
1824
def factorial(n):
1925
if n < 0:
2026
return 0
@@ -29,5 +35,4 @@ def factorial(n):
2935

3036
# Driver Code
3137
num = 5;
32-
print("Factorial of",num,"is",
33-
factorial(num))
38+
print("Factorial of",num,"is", factorial(num))

0 commit comments

Comments
 (0)