public class Solution { public boolean isBalanced(TreeNode root) { if(root == null){ return true; } int depth = maxDepth(root.left) - maxDepth(root.right); if(depth >= 1 || depth <= -1){ return false; }else{ return isBalanced(root.left) && isBalanced(root.right); } } public int maxDepth(TreeNode root) { if(root == null){ return 0; } int res = 1; int left = maxDepth(root.left); int right = maxDepth(root.right) ; return res + left > right ? left : right; }}
Submission Result:
Last executed input: | {0,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9,#,0,#,1,#,2,#,3,#,4,#,5,#,6,#,7,#,8,#,9} |