etl: iteration 1
This commit is contained in:
parent
3cb7c2bff1
commit
75da4fb100
2 changed files with 35 additions and 0 deletions
15
cpp/etl/etl.h
Normal file
15
cpp/etl/etl.h
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
#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&);
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue