15 lines
252 B
C++
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&);
|
|
|
|
}
|