19 lines
200 B
Go
19 lines
200 B
Go
package models
|
|
|
|
type TopNum struct {
|
|
Number int
|
|
Frequency int
|
|
}
|
|
|
|
type Pair struct {
|
|
A int
|
|
B int
|
|
Frequency int
|
|
}
|
|
|
|
type ZScore struct {
|
|
Ball int
|
|
Recent int
|
|
Z float64
|
|
}
|