-
Notifications
You must be signed in to change notification settings - Fork 4
/
factorial.go
32 lines (30 loc) · 923 Bytes
/
factorial.go
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
27
28
29
30
31
32
// Seriál "Programovací jazyk Go"
// https://www.root.cz/serialy/programovaci-jazyk-go/
//
// Osmnáctá část
// Knihovny určené pro tvorbu testů v programovacím jazyce Go
// https://www.root.cz/clanky/knihovny-urcene-pro-tvorbu-testu-v-programovacim-jazyce-go/
//
// Repositář:
// https://github.com/tisnik/go-root/
//
// Seznam demonstračních příkladů z osmnácté části:
// https://github.com/tisnik/go-root/blob/master/article_18/README.md
//
// Demonstrační příklad číslo 4:
// Testovaný balíček.
//
// Dokumentace ve stylu "literate programming":
// https://tisnik.github.io/go-root/article_18/04_factorial_ogletest/factorial.html
package factorial
// Factorial computes factorial for given input using recurrence relation formula
func Factorial(n int64) int64 {
switch {
case n < 0:
return 1
case n == 0:
return 1
default:
return n * Factorial(n-1)
}
}