poker:一个纯净的Go库,用于扑克手评估

时间:2024-05-23 03:17:40
【文件属性】:

文件名称:poker:一个纯净的Go库,用于扑克手评估

文件大小:13KB

文件格式:ZIP

更新时间:2024-05-23 03:17:40

go golang poker texasholdem texas-holdem

扑克 扑克是从Python库移植而来的。 安装 使用go get安装扑克: $ go get github.com/chehsunliu/poker 用法 支持5、6和7卡评估: package main import ( "fmt" "github.com/chehsunliu/poker" ) func main () { deck := poker . NewDeck () hand := deck . Draw ( 7 ) fmt . Println ( hand ) rank := poker . Evaluate ( hand ) fmt . Println ( rank ) fmt . Println ( poker . RankString ( rank )) } $ go run ./main.go [Kd 4h Qh 3s 8s 5h Jd] 66


【文件预览】:
poker-master
----.gitignore(4KB)
----go.mod(231B)
----Makefile(211B)
----LICENSE(1KB)
----card.go(2KB)
----go.sum(1KB)
----evaluator.go(2KB)
----deck_test.go(697B)
----lookup.go(6KB)
----README.md(2KB)
----evaluator_test.go(6KB)
----lookup_test.go(2KB)
----.circleci()
--------config.yml(363B)
----card_test.go(2KB)
----deck.go(915B)

网友评论