You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
319 B
20 lines
319 B
//
|
|
// Created by ioachim on 17.05.2025.
|
|
//
|
|
|
|
#ifndef COMMON_H
|
|
#define COMMON_H
|
|
#include <iostream>
|
|
#include <cmath>
|
|
#include <string>
|
|
#include <cstdlib>
|
|
#include <memory>
|
|
#include <vector>
|
|
#include <unordered_set>
|
|
#include <unordered_map>
|
|
#include <sstream>
|
|
|
|
std::string hashString(std::string str);
|
|
|
|
|
|
#endif //COMMON_H
|
|
|