Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/ndleah/python-mini-project
/ find
Method
find
Binary_tree/tree.py:32–36 ·
view source on GitHub ↗
(self, data)
Source
from the content-addressed store, hash-verified
30
31
# Method for find the data
32
def
find(self, data):
33
if
self.root is not None:
34
return
self._find(data, self.root)
35
else
:
36
return
None
37
38
def
_find(self, data, node):
39
if
data == node.data:
Callers
5
scraping.py
File · 0.80
jquery-3.3.1.min.js
File · 0.80
main.js
File · 0.80
addressVal
Function · 0.80
scraping.py
File · 0.80
Calls
1
_find
Method · 0.95
Tested by
no test coverage detected