Skip to content

Commit

Permalink
Update test_bridge_searching_offline.cpp
Browse files Browse the repository at this point in the history
include <algorithm>
  • Loading branch information
adamant-pwn authored Jun 8, 2024
1 parent b608a60 commit 8f8c4f8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/test_bridge_searching_offline.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#include <algorithm>
#include <cassert>
#include <vector>
#include <set>
Expand All @@ -14,7 +15,7 @@ void normalize(vector<pair<int,int>> &v){
for(auto &p : v){
if(p.first > p.second)swap(p.first, p.second);
}
std::sort(v.begin(), v.end());
sort(v.begin(), v.end());
}

void test_suite(
Expand Down

0 comments on commit 8f8c4f8

Please sign in to comment.