Initial Course
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user