exercism-solutions/cpp/etl/etl.h
2016-03-07 22:14:50 +03:00

15 lines
252 B
C++

#pragma once
#define EXERCISM_RUN_ALL_TESTS
#include <map>
#include <vector>
namespace etl {
typedef std::map<int, std::vector<char>> old_score_t;
typedef std::map<char, int> new_score_t;
new_score_t transform(const old_score_t&);
}