Skip to content

Commit c9125c1

Browse files
committed
module github.com/masx200/leetcode-test/tree-of-coprimes
1 parent 1c7b0c3 commit c9125c1

File tree

5 files changed

+13
-0
lines changed

5 files changed

+13
-0
lines changed

go.work

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,5 @@ use (
1818
./transform-to-chessboard
1919
./utils
2020
./count-complete-tree-nodes
21+
./tree-of-coprimes
2122
)

go.work.sum

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 h1:psW17arqaxU48Z5kZ0CQnkZWQJsqcURM6tKiBApRjXI=
22
golang.org/x/net v0.0.0-20201021035429-f5854403a974 h1:IX6qOQeG5uLjB/hjjwjedwfjND0hgjPMMyO1RoIXQNI=
33
golang.org/x/text v0.3.3 h1:cokOdA+Jmi5PJGXLlLllQSgYigAEfHXJAERHVMaCc2k=
4+
golang.org/x/text v0.3.7 h1:olpwvP2KacW1ZWvsR7uQhoyTYvKAupfQrRGBFM352Gk=

tree-of-coprimes/export.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
package index
2+
3+
func GetCoprimes(nums []int, edges [][]int) []int {
4+
return getCoprimes(nums, edges)
5+
}

tree-of-coprimes/go.mod

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
module github.com/masx200/leetcode-test/tree-of-coprimes

tree-of-coprimes/index.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
package index
2+
3+
func getCoprimes(nums []int, edges [][]int) []int {
4+
5+
}

0 commit comments

Comments
 (0)