Refactor: Replace std::map and std::set with unordered versions
This commit is contained in:
@@ -39,7 +39,8 @@ TEST_SUITE("Graph") {
|
||||
|
||||
auto reverse = G.reverse();
|
||||
|
||||
std::map<std::uint16_t, std::set<std::uint16_t>> expected = {
|
||||
std::unordered_map<std::uint16_t,
|
||||
std::unordered_set<std::uint16_t>> expected = {
|
||||
{1, {3}},
|
||||
{2, {1}},
|
||||
{3, {2, 5}},
|
||||
|
||||
Reference in New Issue
Block a user