Refactor: Replace std::map and std::set with unordered versions

This commit is contained in:
stefiosif
2022-10-12 17:26:11 +03:00
parent c525aeaa43
commit dc7fa93a6a
13 changed files with 44 additions and 41 deletions

View File

@@ -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}},