规范格式

This commit is contained in:
YDZ
2020-08-07 15:50:06 +08:00
parent 854a339abc
commit 4e11f4028a
1438 changed files with 907 additions and 924 deletions

View File

@ -0,0 +1,15 @@
package leetcode
import (
"fmt"
"testing"
)
func Test_Problem745(t *testing.T) {
obj := Constructor745([]string{"apple"})
fmt.Printf("obj = %v\n", obj)
param1 := obj.F("a", "e")
fmt.Printf("param_1 = %v obj = %v\n", param1, obj)
param2 := obj.F("b", "")
fmt.Printf("param_2 = %v obj = %v\n", param2, obj)
}