From 2893c222f078051f44d8b2b23ab21677f2aa8925 Mon Sep 17 00:00:00 2001 From: John Law Date: Mon, 20 Apr 2020 20:34:04 +0200 Subject: [PATCH] Fix cpplint --- dynamic_programming/tree_height.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.