diff --git a/data-structures/binary-tree/bst.go b/data-structures/binary-tree/bst.go index da1aa35..fc33c24 100644 --- a/data-structures/binary-tree/bst.go +++ b/data-structures/binary-tree/bst.go @@ -1,7 +1,5 @@ package bst -import () - type Node struct { Value int Parent *Node