Poor Parents Grumble As Rich Chicago School Forces Kids To Buy iPads
-
[image: New Trier High School]
New Trier High School is embracing a future with more e-books and iPads --
and fewer old-fashioned text books. But not all...
3 minutes ago
std::set< char > output;
ReplyDeletesort( str.begin, str.end() );
char prev = str[0];
for ( int idx = 1; idx < str.length(); ++idx) {
if ( str[idx] == prev ) output.insert(str[idx]);
prev = str[idx];
}
result is in "output"