mirror of
https://github.com/halfrost/LeetCode-Go.git
synced 2025-07-25 12:14:26 +08:00
optimization code level from A to A+
This commit is contained in:
@ -26,28 +26,28 @@ func Test_Problem980(t *testing.T) {
|
||||
|
||||
qs := []question980{
|
||||
|
||||
question980{
|
||||
{
|
||||
para980{[][]int{
|
||||
[]int{1, 0, 0, 0},
|
||||
[]int{0, 0, 0, 0},
|
||||
[]int{0, 0, 2, -1},
|
||||
{1, 0, 0, 0},
|
||||
{0, 0, 0, 0},
|
||||
{0, 0, 2, -1},
|
||||
}},
|
||||
ans980{2},
|
||||
},
|
||||
|
||||
question980{
|
||||
{
|
||||
para980{[][]int{
|
||||
[]int{1, 0, 0, 0},
|
||||
[]int{0, 0, 0, 0},
|
||||
[]int{0, 0, 0, 2},
|
||||
{1, 0, 0, 0},
|
||||
{0, 0, 0, 0},
|
||||
{0, 0, 0, 2},
|
||||
}},
|
||||
ans980{4},
|
||||
},
|
||||
|
||||
question980{
|
||||
{
|
||||
para980{[][]int{
|
||||
[]int{1, 0},
|
||||
[]int{0, 2},
|
||||
{1, 0},
|
||||
{0, 2},
|
||||
}},
|
||||
ans980{0},
|
||||
},
|
||||
|
Reference in New Issue
Block a user