Skip to content

Commit 133efc6

Browse files
authored
Update README.md
1 parent 08aa679 commit 133efc6

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

exercises/020-factorial/README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,19 @@
22

33
## 📝 Instructions:
44

5-
1. Create a function named `factorial()` which receives a number as parameter and returns the factorial of the given number.
5+
1. Create a function named `factorial()`, which receives a number as a parameter and returns the factorial of the given number.
66

7-
## Example input:
7+
## 📎 Example input:
88

99
```py
1010
factorial(8)
1111
```
1212

13-
## Example output:
13+
## 📎 Example output:
1414

15-
+ 40320
15+
```py
16+
40320
17+
```
1618

1719
## 💡 Hint:
1820

0 commit comments

Comments
 (0)