#include #include #include const std::map< int, const std::vector > scores{ { 1, {'A', 'E', 'I', 'O', 'U', 'L', 'N', 'R', 'S', 'T'} }, { 2, {'D', 'G'} }, { 3, {'B', 'C', 'M', 'P'} }, { 4, {'F', 'H', 'V', 'W', 'Y'} }, { 5, {'K'} }, { 8, {'J', 'X'} }, { 10,{'Q', 'Z'} } }; int main() { return 0; }