Refactor code, added new checkXu test cases(9 latterns)

This commit is contained in:
2024-04-12 23:45:45 +00:00
parent e341a048fc
commit 4b10dbb65d
11 changed files with 212 additions and 176 deletions
+17
View File
@@ -0,0 +1,17 @@
package pkg
import (
"fmt"
"testing"
)
func TestPrint(t *testing.T) {
var env environment
env.Print()
}
func TestPatternNormalization(t *testing.T) {
var env environment
handTiles := env.PatternNormalization()
fmt.Println(handTiles)
}