mirror of
https://github.com/halfrost/LeetCode-Go.git
synced 2025-07-04 16:12:47 +08:00
optimization code level from A to A+
This commit is contained in:
@ -29,19 +29,19 @@ func Test_Problem1030(t *testing.T) {
|
||||
|
||||
qs := []question1030{
|
||||
|
||||
question1030{
|
||||
{
|
||||
para1030{1, 2, 0, 0},
|
||||
ans1030{[][]int{[]int{0, 0}, []int{0, 1}}},
|
||||
ans1030{[][]int{{0, 0}, {0, 1}}},
|
||||
},
|
||||
|
||||
question1030{
|
||||
{
|
||||
para1030{2, 2, 0, 1},
|
||||
ans1030{[][]int{[]int{0, 1}, []int{0, 0}, []int{1, 1}, []int{1, 0}}},
|
||||
ans1030{[][]int{{0, 1}, {0, 0}, {1, 1}, {1, 0}}},
|
||||
},
|
||||
|
||||
question1030{
|
||||
{
|
||||
para1030{2, 3, 1, 2},
|
||||
ans1030{[][]int{[]int{1, 2}, []int{0, 2}, []int{1, 1}, []int{0, 1}, []int{1, 0}, []int{0, 0}}},
|
||||
ans1030{[][]int{{1, 2}, {0, 2}, {1, 1}, {0, 1}, {1, 0}, {0, 0}}},
|
||||
},
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user