c++ string token
getline에 세번째 있는 delimeter를 이용해서 token할 수 있다 vector solution(vector record) { vector ans; for (int i = 0; i < record.size(); i++) { vector tokens; istringstream f(record[i]); string s; while (getline(f, s, ' ')) { tokens.push_back(s); cout
2019. 9. 18. 20:14