Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/qiyuangong/leetcode
/ unlink
Method
unlink
java/716_Max_Stack.java:69–73 ·
view source on GitHub ↗
(Node node)
Source
from the content-addressed store, hash-verified
67
}
68
69
public
Node unlink(Node node) {
70
node.prev.next = node.next;
71
node.next.prev = node.prev;
72
return
node;
73
}
74
}
75
76
class
Node {
Callers
2
pop
Method · 0.95
popMax
Method · 0.80
Calls
no outgoing calls
Tested by
no test coverage detected