Files
LeetCode-Go/leetcode/1235.Maximum-Profit-in-Job-Scheduling/1235. Maximum Profit in Job Scheduling_test.go
2020-08-27 00:58:22 +08:00

55 lines
945 B
Go

package leetcode
import (
"fmt"
"testing"
)
type question1235 struct {
para1235
ans1235
}
// para 是参数
// one 代表第一个参数
type para1235 struct {
startTime []int
endTime []int
profit []int
}
// ans 是答案
// one 代表第一个答案
type ans1235 struct {
one int
}
func Test_Problem1235(t *testing.T) {
qs := []question1235{
{
para1235{[]int{1, 2, 3, 3}, []int{3, 4, 5, 6}, []int{50, 10, 40, 70}},
ans1235{120},
},
{
para1235{[]int{1, 2, 3, 4, 6}, []int{3, 5, 10, 6, 9}, []int{20, 20, 100, 70, 60}},
ans1235{150},
},
{
para1235{[]int{1, 1, 1}, []int{2, 3, 4}, []int{5, 6, 4}},
ans1235{6},
},
}
fmt.Printf("------------------------Leetcode Problem 1235------------------------\n")
for _, q := range qs {
_, p := q.ans1235, q.para1235
fmt.Printf("【input】:%v 【output】:%v\n", p, jobScheduling(p.startTime, p.endTime, p.profit))
}
fmt.Printf("\n\n\n")
}