package
0.0.0-20230225110349-988b5a29a29c
Repository: https://github.com/tannergabriel/learning-go.git
Documentation: pkg.go.dev

# README

Factorial Sequence

The factorial function is a mathematical formula represented by an exclamation mark "!". The factorial of a non-negative integer n is the p roduct of all positive integers less than or equal to n.

Here’s an example:

7! = 1 * 2 * 3 * 4 * 5 * 6 * 7 = 5.040

nn!
01
11
22
36
424
5120
6720
75 040
840 320
9362 880
103 628 800

Implementation

# Functions

No description provided by the author
No description provided by the author