Testing your code..
Write a function factorial that takes an integer as an argument. It returns the factorial of a given number.
Examples
factorial(0) ➞ 1factorial(4) ➞ 24factorial(5) ➞ 120
Note