Files
LeetCode-Go/leetcode/0399.Evaluate-Division/399. Evaluate Division_test.go
2020-08-27 00:58:22 +08:00

45 lines
811 B
Go

package leetcode
import (
"fmt"
"testing"
)
type question399 struct {
para399
ans399
}
// para 是参数
// one 代表第一个参数
type para399 struct {
e [][]string
v []float64
q [][]string
}
// ans 是答案
// one 代表第一个答案
type ans399 struct {
one []float64
}
func Test_Problem399(t *testing.T) {
qs := []question399{
{
para399{[][]string{{"a", "b"}, {"b", "c"}}, []float64{2.0, 3.0}, [][]string{{"a", "c"}, {"b", "a"}, {"a", "e"}, {"a", "a"}, {"x", "x"}}},
ans399{[]float64{6.0, 0.5, -1.0, 1.0, -1.0}},
},
}
fmt.Printf("------------------------Leetcode Problem 399------------------------\n")
for _, q := range qs {
_, p := q.ans399, q.para399
fmt.Printf("【input】:%v 【output】:%v\n", p, calcEquation(p.e, p.v, p.q))
}
fmt.Printf("\n\n\n")
}