Skip to content

Commit 0ca8dc1

Browse files
authored
Update README.md
1 parent 126fbea commit 0ca8dc1

1 file changed

Lines changed: 10 additions & 1 deletion

File tree

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
# Factorial Finder
22
In this code challenge we write a program that finds the factorial of a positive integer.
33

4+
![GitHub followers](https://img.shields.io/github/followers/hrszpuk?style=social)
5+
![Twitter Follow](https://img.shields.io/twitter/follow/hrszpuk?style=social)
6+
<br>
7+
![GitHub language count](https://img.shields.io/github/languages/count/CodingChallengesBooklet/FactorialFinder?style=for-the-badge)
8+
![GitHub code size in bytes](https://img.shields.io/github/languages/code-size/CodingChallengesBooklet/FactorialFinder?style=for-the-badge)
9+
![GitHub issues](https://img.shields.io/github/issues/CodingChallengesBooklet/FactorialFinder?style=for-the-badge)
10+
![GitHub last commit](https://img.shields.io/github/last-commit/CodingChallengesBooklet/FactorialFinder?style=for-the-badge)
11+
![GitHub branch checks state](https://img.shields.io/github/checks-status/CodingChallengesBooklet/FactorialFinder/main?style=for-the-badge)
12+
413
## Problem
514
The Factorial of a positive integer, n, is defined as the product of the sequence n, n-1, n-2, ...1 and the factorial of zeo, 0, is defined as being 1. Solve this using both loops and recursion.
615

@@ -41,4 +50,4 @@ f = FUNCTION (n)
4150
n * f(n-1)
4251
4352
f(10)
44-
```
53+
```

0 commit comments

Comments
 (0)