-
-
Notifications
You must be signed in to change notification settings - Fork 0
Permutation
admin edited this page Jun 10, 2021
·
3 revisions
import "github.com/digital-technology-agency/math"
func Example() {
n := 4
value := math.PermutationsInt(n)
fmt.Printf("Result: %d", value)
/*
Result: 24
*/
}