diff --git a/trees_and_graphs/find_max_depth_tree.py b/trees_and_graphs/find_max_depth_tree.py index c406629..ba4b188 100644 --- a/trees_and_graphs/find_max_depth_tree.py +++ b/trees_and_graphs/find_max_depth_tree.py @@ -1,3 +1,7 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +# author: bt3gl + def max_depth(root: Optional[TreeNode]) -> int: if root is None: