Files
LeetCode-Go/leetcode/0367.Valid-Perfect-Square/367. Valid Perfect Square_test.go
2020-08-27 00:58:22 +08:00

74 lines
926 B
Go

package leetcode
import (
"fmt"
"testing"
)
type question367 struct {
para367
ans367
}
// para 是参数
// one 代表第一个参数
type para367 struct {
one int
}
// ans 是答案
// one 代表第一个答案
type ans367 struct {
one bool
}
func Test_Problem367(t *testing.T) {
qs := []question367{
{
para367{1},
ans367{true},
},
{
para367{2},
ans367{false},
},
{
para367{3},
ans367{false},
},
{
para367{4},
ans367{true},
},
{
para367{5},
ans367{false},
},
{
para367{6},
ans367{false},
},
{
para367{104976},
ans367{true},
},
// 如需多个测试,可以复制上方元素。
}
fmt.Printf("------------------------Leetcode Problem 367------------------------\n")
for _, q := range qs {
_, p := q.ans367, q.para367
fmt.Printf("【input】:%v 【output】:%v\n", p, isPerfectSquare(p.one))
}
fmt.Printf("\n\n\n")
}