Skip to content

Commit 2c83fb3

Browse files
authored
feat: add solutions to lc problem: No.2751
1 parent da1d074 commit 2c83fb3

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

solution/2700-2799/2751.Robot Collisions/README_EN.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,8 +177,7 @@ class Solution {
177177
```cpp
178178
class Solution {
179179
public:
180-
vector<int> survivedRobotsHealths(vector<int>& positions,
181-
vector<int>& healths, string directions) {
180+
vector<int> survivedRobotsHealths(vector<int>& positions, vector<int>& healths, string directions) {
182181
int n = positions.size();
183182
vector<int> indices(n);
184183

0 commit comments

Comments
 (0)