Skip to content
This repository was archived by the owner on Sep 20, 2023. It is now read-only.

Commit fafc688

Browse files
committed
979 added
1 parent 7a07770 commit fafc688

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

Algorithms/0979.distribute-coins-in-binary-tree/distribute-coins-in-binary-tree.go

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
package problem0979
22

3-
import (
4-
"github.com/aQuaYi/Data-Structure-and-Algorithms-in-Go/kit"
5-
)
3+
import "github.com/aQuaYi/LeetCode-in-Go/kit"
64

75
// TreeNode is pre-defined...
86
type TreeNode = kit.TreeNode

Algorithms/0979.distribute-coins-in-binary-tree/distribute-coins-in-binary-tree_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ var tcs = []struct {
2929
},
3030

3131
{
32-
[]int{1, 0, 0, null, 3},
32+
[]int{1, 0, 0, kit.NULL, 3},
3333
4,
3434
},
3535

0 commit comments

Comments
 (0)