mirror of
https://github.com/halfrost/LeetCode-Go.git
synced 2025-07-05 00:25:22 +08:00
optimization code level from A to A+
This commit is contained in:
@ -26,14 +26,14 @@ func Test_Problem867(t *testing.T) {
|
||||
|
||||
qs := []question867{
|
||||
|
||||
question867{
|
||||
para867{[][]int{[]int{1, 2, 3}, []int{4, 5, 6}, []int{7, 8, 9}}},
|
||||
ans867{[][]int{[]int{1, 4, 7}, []int{2, 5, 8}, []int{3, 6, 9}}},
|
||||
{
|
||||
para867{[][]int{{1, 2, 3}, {4, 5, 6}, {7, 8, 9}}},
|
||||
ans867{[][]int{{1, 4, 7}, {2, 5, 8}, {3, 6, 9}}},
|
||||
},
|
||||
|
||||
question867{
|
||||
para867{[][]int{[]int{1, 2, 3}, []int{4, 5, 6}}},
|
||||
ans867{[][]int{[]int{1, 4}, []int{2, 5}, []int{3, 6}}},
|
||||
{
|
||||
para867{[][]int{{1, 2, 3}, {4, 5, 6}}},
|
||||
ans867{[][]int{{1, 4}, {2, 5}, {3, 6}}},
|
||||
},
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user