Newer
Older
exercism-cpp / etl / etl.h
@Wook Song Wook Song on 28 Oct 2022 198 bytes Easy: Add a solution for "ETL"
#if !defined(ETL_H)
#define ETL_H

#include <map>
#include <vector>

namespace etl {

std::map<char, int> transform(const std::map<int, std::vector<char>> old);

} // namespace etl

#endif // ETL_H