Skip to content

Commit

Permalink
fix: cpp code
Browse files Browse the repository at this point in the history
  • Loading branch information
yanglbme committed Apr 7, 2024
1 parent 56c4636 commit 7917451
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ public:
for (int& v : target) {
++cnt1[v];
}
for (int& v: arr) {
for (int& v : arr) {
++cnt2[v];
}
return cnt1 == cnt2;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ public:
for (int& v : target) {
++cnt1[v];
}
for (int& v: arr) {
for (int& v : arr) {
++cnt2[v];
}
return cnt1 == cnt2;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class Solution {
for (int& v : target) {
++cnt1[v];
}
for (int& v: arr) {
for (int& v : arr) {
++cnt2[v];
}
return cnt1 == cnt2;
Expand Down

0 comments on commit 7917451

Please sign in to comment.