Files
cpp-course/modules/07_stl_containers/src/unordered_containers.cpp
T

22 lines
462 B
C++
Raw Normal View History

2026-08-11 17:40:36 +03:00
#include "unordered_containers.hpp"
namespace stl_containers {
auto first_unique(const std::vector<std::string>& words) -> std::string {
(void)words;
return {};
}
auto group_anagrams(const std::vector<std::string>& words)
-> std::unordered_map<std::string, std::vector<std::string>> {
(void)words;
return {};
}
auto has_duplicate(const std::vector<int>& data) -> bool {
(void)data;
return false;
}
} // namespace stl_containers