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,27 +26,27 @@ func Test_Problem385(t *testing.T) {
|
||||
|
||||
qs := []question385{
|
||||
|
||||
question385{
|
||||
{
|
||||
para385{"[[]]"},
|
||||
ans385{[]int{}},
|
||||
},
|
||||
|
||||
question385{
|
||||
{
|
||||
para385{"[]"},
|
||||
ans385{[]int{}},
|
||||
},
|
||||
|
||||
question385{
|
||||
{
|
||||
para385{"[-1]"},
|
||||
ans385{[]int{-1}},
|
||||
},
|
||||
|
||||
question385{
|
||||
{
|
||||
para385{"[123,[456,[789]]]"},
|
||||
ans385{[]int{123, 456, 789}},
|
||||
},
|
||||
|
||||
question385{
|
||||
{
|
||||
para385{"324"},
|
||||
ans385{[]int{324}},
|
||||
},
|
||||
|
Reference in New Issue
Block a user