We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
#include<sstream>#include<vector>#include<iostream>usingnamespacestd;vector<int>parseInts(stringstr){// Complete this functionvector<int>result;stringstreamss(str);charch;inttemp;while(ss>>temp){result.push_back(temp);ss>>ch;}returnresult;}intmain(){stringstr;cin>>str;vector<int>integers=parseInts(str);for(inti=0;i<integers.size();i++){cout<<integers[i]<<"\n";}return0;}
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
StringStream
You are viewing a single comment's thread. Return to all comments →
My C++ code 😎🐦🔥