mirror of
https://github.com/halfrost/LeetCode-Go.git
synced 2025-07-25 12:14:26 +08:00
11 lines
112 B
Go
11 lines
112 B
Go
package leetcode
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
func Test_Problem429(t *testing.T) {
|
|
fmt.Printf("success\n")
|
|
}
|