Skip to content

Commit 2602b7b

Browse files
committed
Solution to today's problem
1 parent 0f941e2 commit 2602b7b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/io/github/spannm/leetcode/lc1/lc1000/Problem1038.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
class Problem1038 extends LeetcodeProblem {
77
private int greaterSum = 0;
88

9-
public TreeNode bstToGst(TreeNode _root) {
9+
TreeNode bstToGst(TreeNode _root) {
1010
if (_root.right != null) {
1111
bstToGst(_root.right);
1212
}

0 commit comments

Comments
 (0)