#pragma once #include #include namespace counter { struct Counter { static std::unordered_map count(const std::string& input); static void countPair(std::unordered_map& map, const std::string& input); static void countTriple(std::unordered_map& map, const std::string& input); }; }