完善十子棋功能

This commit is contained in:
2024-10-16 19:30:07 +08:00
parent 7986bb1c9b
commit 411876b377
5 changed files with 184 additions and 49 deletions
+12
View File
@@ -0,0 +1,12 @@
package main
import (
"fmt"
"testing"
"work_cation/views"
)
func TestP1(t *testing.T) {
r := views.IsArithmeticSequence2([]int{0, 4, 8}, 8, 3, 3, 3)
fmt.Println(r)
}