diff --git a/dynamic_programming/tree_height.cpp b/dynamic_programming/tree_height.cpp index 095d79f7b..a43f91a56 100644 --- a/dynamic_programming/tree_height.cpp +++ b/dynamic_programming/tree_height.cpp @@ -49,7 +49,7 @@ int main() { int no_of_nodes; std::cout << "Enter number of nodes of the tree : " << std::endl; std::cin >> no_of_nodes; - + // u,v denotes an undirected edge of tree. int u, v; // Tree contains exactly n-1 edges where n denotes the nodes.