add gods (Go data structures) as dependency

Which is allowed by leetcode
This commit is contained in:
kanna5 2025-12-24 18:49:58 +09:00
parent 3a433aef4f
commit f960020cb4
3 changed files with 9 additions and 0 deletions

2
go.mod
View file

@ -1,3 +1,5 @@
module leetcode-go
go 1.25.5
require github.com/emirpasic/gods/v2 v2.0.0-alpha

2
go.sum Normal file
View file

@ -0,0 +1,2 @@
github.com/emirpasic/gods/v2 v2.0.0-alpha h1:dwFlh8pBg1VMOXWGipNMRt8v96dKAIvBehtCt6OtunU=
github.com/emirpasic/gods/v2 v2.0.0-alpha/go.mod h1:W0y4M2dtBB9U5z3YlghmpuUhiaZT2h6yoeE+C1sCp6A=

5
tools.go Normal file
View file

@ -0,0 +1,5 @@
package leetcodego
import (
_ "github.com/emirpasic/gods/v2/utils"
)