Skip to content

Commit 9124e40

Browse files
committed
upd
1 parent 6045f81 commit 9124e40

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

leetcode/biweekly/151/d/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ class Solution {
8989
// k 改成从 0 开始,方便计算
9090
k--;
9191
if (n < f.size() && k >= f.get(n) * (2 - n % 2)) { // n 是偶数的时候,方案数乘以 2
92-
return new int[0];
92+
return new int[]{};
9393
}
9494

9595
// cand 表示剩余未填入 ans 的数字

0 commit comments

Comments
 (0)