Skip to content

Commit 4c8241e

Browse files
author
eunhwa99
committed
Add line
1 parent 378a096 commit 4c8241e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

house-robber/eunhwa99.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ private int fun(int idx) {
2121
dp[idx] += Math.max(fun(idx + 2) + numArray[idx], fun(idx + 1));
2222
return dp[idx];
2323
}
24-
}
24+
}

0 commit comments

Comments
 (0)