(int target)
| 20 | } |
| 21 | |
| 22 | public boolean find(int target) { |
| 23 | return set.contains(target); |
| 24 | |
| 25 | } |
| 26 | public void dfs(TreeNode root, int val){ |
| 27 | if(root==null) return; |
| 28 | root.val = val; |
nothing calls this directly
no outgoing calls
no test coverage detected