When trying to compile the following c++ code I get the errors I've screenshot
// p12
#include <iostream>
#include <vector>
#include <string>
#include <map>
class Solution {
private:
std::vector<int> num = {1,4,5,9,10,40,50,90,100,400,500,900,1000};
std::vector<std::string> sym =...