Initial Course

This commit is contained in:
David Gil de Gómez Pérez
2026-08-11 17:40:36 +03:00
commit 9aed1d1d86
202 changed files with 3420 additions and 0 deletions
@@ -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