Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
Index your code
hub
/
github.com/kunal-kushwaha/DSA-Bootcamp-Java
/ balanced
Method
balanced
lectures/20-trees/code/introduction/BST.java:78–80 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
76
}
77
78
public
boolean balanced() {
79
return
balanced(root);
80
}
81
82
private
boolean balanced(Node node) {
83
if
(node == null) {
Callers
nothing calls this directly
Calls
1
height
Method · 0.95
Tested by
no test coverage detected