Files
work_cation/common_test.go
T
2024-10-17 01:21:55 +08:00

17 lines
205 B
Go

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)
}
func TestP2(t *testing.T) {
}