Sha256: 0aee6249a7c95ed10b0c7010bdae0c6a9a51273afe903ff53d66dea7a8f18f00
Contents?: true
Size: 321 Bytes
Versions: 396
Compression:
Stored size: 321 Bytes
Contents
#include "etl.h" #include <cctype> using namespace std; namespace etl { map<char, int> transform(map<int, vector<char>> const& old) { map<char, int> result; for (auto const& item : old) { for (char c : item.second) { result[tolower(c)] = item.first; } } return result; } }
Version data entries
396 entries across 396 versions & 1 rubygems