Skip to content

Commit 5b5c02d

Browse files
fix build
1 parent 7e281d9 commit 5b5c02d

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

Lines changed: 1 addition & 0 deletions
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)