From 75ae56f0abb913775348b90459a6b44f195c2968 Mon Sep 17 00:00:00 2001 From: Rodolfo Rodriguez Date: Sun, 9 Sep 2018 15:35:12 -0500 Subject: [PATCH] Update bst.go Remove unused code --- data-structures/binary-tree/bst.go | 2 -- 1 file changed, 2 deletions(-) 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