(String[] args)
| 19 | } |
| 20 | |
| 21 | public static void main(String[] args) { |
| 22 | Solution solution = new Solution(); |
| 23 | TreeNode testData = TreeNode.createTestData("[5,4,8,11,null,13,4,7,2,null,null,null,1]"); |
| 24 | TreeNode.print(testData); |
| 25 | System.out.println(solution.hasPathSum(testData, 22)); |
| 26 | } |
| 27 | } |
nothing calls this directly
no test coverage detected