Files
LeetCode-Go/leetcode/9990316.Remove-Duplicate-Letters/316. Remove Duplicate Letters_test.go
2020-08-27 00:58:22 +08:00

47 lines
682 B
Go

package leetcode
import (
"fmt"
"testing"
)
type question316 struct {
para316
ans316
}
// para 是参数
// one 代表第一个参数
type para316 struct {
one string
}
// ans 是答案
// one 代表第一个答案
type ans316 struct {
one string
}
func Test_Problem316(t *testing.T) {
qs := []question316{
{
para316{"bcabc"},
ans316{"abc"},
},
{
para316{"cbacdcbc"},
ans316{"acdb"},
},
}
fmt.Printf("------------------------Leetcode Problem 316------------------------\n")
for _, q := range qs {
_, p := q.ans316, q.para316
fmt.Printf("【input】:%v 【output】:%v\n", p, removeDuplicateLetters(p.one))
}
fmt.Printf("\n\n\n")
}