10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9573563 commit 3baf525Copy full SHA for 3baf525
src/main/java/com/fishercoder/solutions/_426.java
@@ -41,14 +41,14 @@ private static class Node {
41
public Node() {
42
}
43
44
- public Node(int _val) {
45
- val = _val;
+ public Node(int val) {
45< 7DA2 /code>
+ this.val = val;
46
47
48
- public Node(int _val, Node _left, Node _right) {
49
50
- left = _left;
51
- right = _right;
+ public Node(int val, Node left, Node right) {
+ this.left = left;
+ this.right = right;
52
53
54
0 commit comments