Add solution 341

This commit is contained in:
YDZ
2021-03-24 11:36:45 +08:00
parent fec98dba7f
commit 0c519027d4
26 changed files with 762 additions and 453 deletions

View File

@ -0,0 +1,13 @@
package leetcode
import (
"fmt"
"testing"
)
func Test_Problem338(t *testing.T) {
obj := Constructor([]*NestedInteger{})
fmt.Printf("obj = %v\n", obj)
fmt.Printf("obj = %v\n", obj.Next())
fmt.Printf("obj = %v\n", obj.HasNext())
}