Skip to content

Commit 2210efd

Browse files
authored
Update Solution.java
1 parent e1ed680 commit 2210efd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/g0001_0100/s0018_4sum/Solution.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
public class Solution {
1111
public List<List<Integer>> fourSum(int[] nums, int target) {
1212
List<List<Integer>> ret = new ArrayList<>();
13-
if (nums == null && nums.length < 4) {
13+
if (nums.length < 4) {
1414
return ret;
1515
}
1616
if (nums[0] == 1000000000 && nums[1] == 1000000000) {

0 commit comments

Comments
 (0)