permutation/permutation_test.go

13 lines
141 B
Go
Raw Normal View History

2022-01-21 21:12:47 +00:00
package permutation
import (
"fmt"
"testing"
)
func Test(t *testing.T) {
a := []int{1, 2, 3, 4}
p := Permutations(a)
fmt.Println(p)
}