34 lines
621 B
Go
34 lines
621 B
Go
// File: permutation_test.go
|
|
// Created Time: 2023-05-09
|
|
// Author: Reanon (793584285@qq.com)
|
|
|
|
package chapter_backtracking
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
|
|
. "github.com/krahets/hello-algo/pkg"
|
|
)
|
|
|
|
func TestPermutationI(t *testing.T) {
|
|
/* Permutation I */
|
|
nums := []int{1, 2, 3}
|
|
fmt.Printf("Input array nums =")
|
|
PrintSlice(nums)
|
|
|
|
res := permutationsI(nums)
|
|
fmt.Printf("All permutations res =")
|
|
fmt.Println(res)
|
|
}
|
|
|
|
func TestPermutationII(t *testing.T) {
|
|
nums := []int{1, 2, 2}
|
|
fmt.Printf("Input array nums =")
|
|
PrintSlice(nums)
|
|
|
|
res := permutationsII(nums)
|
|
fmt.Printf("All permutations res =")
|
|
fmt.Println(res)
|
|
}
|