// // Created by ioachim on 19.05.2025. // #include "common.h" std::string hashString(std::string str) { return std::to_string(std::hash{}(str)); } template data_type MAX(data_type x, data_type y) { return (x > y) ? x : y; }