Skip to content

Commit

Permalink
add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
ahans committed Jan 19, 2025
1 parent 165b1e5 commit 6a6185d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions exercises/practice/anagram/anagram_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ using namespace std;
// Anagram exercise test case data version 1.5.0

namespace {
// This class is a helper to support any container to be used. It takes
// an std::unordered_set of expected values and provides a method
// `is_identical_to` that checks if a given container is as expected. Since the
// method is a method template, it works for any container.
class ExpectedSet {
public:
ExpectedSet() = default;
Expand Down

0 comments on commit 6a6185d

Please sign in to comment.