mirror of
https://github.com/halfrost/LeetCode-Go.git
synced 2025-07-23 09:51:45 +08:00
14 lines
237 B
Go
14 lines
237 B
Go
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())
|
|
}
|