diff options
| author | Paul Buetow <git@mx.buetow.org> | 2020-11-03 09:50:46 +0000 |
|---|---|---|
| committer | Paul Buetow <git@mx.buetow.org> | 2020-11-03 09:50:46 +0000 |
| commit | eebd141f6e7b04518916ad3287b012b83b5a4b5f (patch) | |
| tree | e840c6817ade10c4cfdd5fd8111faea9ed3eddcc /set/set.go | |
| parent | f2b6ebf6ba207f8a9e09088636f7983f67801b81 (diff) | |
add min and max binary search tree methods
Diffstat (limited to 'set/set.go')
| -rw-r--r-- | set/set.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3,8 +3,8 @@ package set import "fmt" var ( - NotFound = fmt.Errorf("Could not find entry") - NotImplemented = fmt.Errorf("Method not implemented") + NotFound = fmt.Errorf("could not find entry") + NotImplemented = fmt.Errorf("method not implemented") ) type Set interface { |
