-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFactorial
More file actions
26 lines (15 loc) · 832 Bytes
/
Factorial
File metadata and controls
26 lines (15 loc) · 832 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
In mathematics, the factorial of a non-negative integer n, denoted by n!, is the product of all positive integers less than or equal to n. For example: 5! = 5 * 4 * 3 * 2 * 1 = 120. By convention the value of 0! is 1.
Write a function to calculate factorial for a given input. If input is below 0 or above 12 throw an exception of type ArgumentOutOfRangeException (C#) or IllegalArgumentException (Java) or RangeException (PHP) or throw a RangeError (JavaScript) or ValueError (Python) or return -1 (C).
More details about factorial can be found here.
*/
def factorial(n):
if n < 0 or n > 12: raise ValueError()
return 1 if n <= 1 else n* factorial(n-1)
#Alternative way
def factorial(n):
if n < 0 or n > 12: raise ValueError()
total = 1
for i in range(n,1,-1):
total *= i
return total