mirror of
https://github.com/krahets/hello-algo.git
synced 2026-04-13 09:49:49 +08:00
build
This commit is contained in:
@@ -152,7 +152,7 @@ comments: true
|
||||
return new int[] { i, j };
|
||||
}
|
||||
}
|
||||
return new int[0];
|
||||
return Array.Empty<int>();
|
||||
}
|
||||
```
|
||||
|
||||
@@ -402,7 +402,7 @@ comments: true
|
||||
}
|
||||
dic.Add(nums[i], i);
|
||||
}
|
||||
return new int[0];
|
||||
return Array.Empty<int>();
|
||||
}
|
||||
```
|
||||
|
||||
|
||||
Reference in New Issue
Block a user