Skip to content

Commit 4ca18a8

Browse files
fix build
1 parent b3ead1a commit 4ca18a8

File tree

1 file changed

+1
-0
lines changed
  • src/main/java/com/fishercoder/solutions

1 file changed

+1
-0
lines changed

src/main/java/com/fishercoder/solutions/_979.java

+1
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ public class _979 {
5858
public static class Solution1 {
5959
/**credit: https://leetcode.com/problems/distribute-coins-in-binary-tree/discuss/221930/JavaC%2B%2BPython-Recursive-Solution*/
6060
int moves = 0;
61+
6162
public int distributeCoins(TreeNode root) {
6263
dfs(root);
6364
return moves;

0 commit comments

Comments
 (0)