mirror of
https://github.com/halfrost/LeetCode-Go.git
synced 2025-07-25 03:11:41 +08:00
Add solution 341
This commit is contained in:
@ -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())
|
||||
}
|
Reference in New Issue
Block a user