MCPcopy Create free account
hub / github.com/Tiwarishashwat/InterviewCodes / Pair

Class Pair

TreeTopView.java:1–9  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1class Pair{
2 int vertical;
3 Node node;
4 Pair(Node n,int v)
5 {
6 vertical = v;
7 node = n;
8 }
9}
10
11class Solution
12{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected